I'm using RadGrid Ajax Q3 2009. I can't believe I'm having trouble with something so simple. All I want to do is retrieve a value of a non-editable cell for a row in edit mode.
Using the Update or Item Command event to get the value
always gives mycell with a value of " "
What the hey am I doing wrong??
Using the Update or Item Command event to get the value
GridDataItem
dataitem = e.Item as GridDataItem;
string mycell = dataitem["MyColumn"].Text;
always gives mycell with a value of " "
What the hey am I doing wrong??