Hi,
How to implement the updatecommand and deletecommand code for RAD Grid.? Is there any code samples
I have added the below code in updatecommand:
In the changedRows line, i am getting error as: Cannot perform '=' operation on System.String and System.Int32.
Thanks
How to implement the updatecommand and deletecommand code for RAD Grid.? Is there any code samples
I have added the below code in updatecommand:
GridEditableItem editedItem = e.Item
as
GridEditableItem;
DataTable ordersTable =
this
.GridData;
//Locate the changed row in the DataSource
DataRow[] changedRows = ordersTable.Select(
"Title = "
+ Convert.ToString(editedItem.OwnerTableView.DataKeyValues[e.Item.ItemIndex][
"Title"
]));
In the changedRows line, i am getting error as: Cannot perform '=' operation on System.String and System.Int32.
Thanks