I cannot reach the edited value in a row using the following code:
If I edit the column, then change the value, from "Charles" to "Charles T." the newValues Hashtable only contains the entry for "Charles" not "Charles T." ... how do I get to the text entered by the user during the edit?
The row is not set to read only.
Thanks in advance,
Ryan
| foreach (GridEditableItem editedItem in gvEntityAttributes.EditItems) |
| { |
| Hashtable newValues = new Hashtable(); |
| e.Item.OwnerTableView.ExtractValuesFromItem(newValues, editedItem); |
| string cID = editedItem.GetDataKeyValue("ea_ID").ToString(); |
| } |
If I edit the column, then change the value, from "Charles" to "Charles T." the newValues Hashtable only contains the entry for "Charles" not "Charles T." ... how do I get to the text entered by the user during the edit?
The row is not set to read only.
Thanks in advance,
Ryan