Hi,
I am trying to do a soft save of the grid items to a datatable, when add new item is clicked.
Currently i am using the hashtable to store the data. However, i would like to add those items to datatable.
How to add the values to the datatable?
Thanks
I am trying to do a soft save of the grid items to a datatable, when add new item is clicked.
Currently i am using the hashtable to store the data. However, i would like to add those items to datatable.
GridEditableItem item = e.Item as GridEditableItem; Hashtable values = new Hashtable(); DataTable dt = new DataTable(); item.ExtractValues(values);How to add the values to the datatable?
Thanks