L
larry mckay
hi, I'm using a datagrid whose datasource is being set dynamically. the
data at the bottom appears fine when the grid is rendered. the data is
the result of a stored procedure. What I's like to do is to make the
grid read only and have only 1 column editable. I believe that I need to
use a datagridtextboxcolumn, but I need additional insight on how to use
it properly. Any advice on HOW i'd get an editable column on a
databound grid?
thanks in advance
ExceptionAdapter.SelectCommand = cmdldexp
'prevadapter.SelectCommand.Parameters.Add(sper)
ExceptionAdapter.SelectCommand.CommandType =
CommandType.StoredProcedure
ExceptionData.Clear()
ExceptionAdapter.Fill(ExceptionData, EXCEPTION_TABLE_NAME)
grdexceptions.DataSource =
ExceptionData.Tables(EXCEPTION_TABLE_NAME)
data at the bottom appears fine when the grid is rendered. the data is
the result of a stored procedure. What I's like to do is to make the
grid read only and have only 1 column editable. I believe that I need to
use a datagridtextboxcolumn, but I need additional insight on how to use
it properly. Any advice on HOW i'd get an editable column on a
databound grid?
thanks in advance
ExceptionAdapter.SelectCommand = cmdldexp
'prevadapter.SelectCommand.Parameters.Add(sper)
ExceptionAdapter.SelectCommand.CommandType =
CommandType.StoredProcedure
ExceptionData.Clear()
ExceptionAdapter.Fill(ExceptionData, EXCEPTION_TABLE_NAME)
grdexceptions.DataSource =
ExceptionData.Tables(EXCEPTION_TABLE_NAME)