How in the world do I get the value from a GridTextBoxColumnEditor control? I've tried every way I can find and it always comes back empty on the update command of my grid.
Well I looked some more and found something that wasn't really telling me it would fix it, but it did. For search sake, here is how you get the values:
if (e.Item is GridEditableItem && e.Item.IsInEditMode)
{
GridEditableItem item = e.Item as GridEditableItem;
int walkerId = Convert.ToInt32(e.Item.OwnerTableView.DataKeyValues[e.Item.ItemIndex]["Id"]);
Hashtable newValues = new Hashtable();
//The GridTableView will fill the values from all editable columns in the hash