I have a small page which holds a UltraWebGrid. DataSource of the grid is bound to a DataTable which is created at runtime.
Binding the DataTable to the Grid works just fine. Now I would like to reflect my updates of the grid to my DataTable.
I've read an article on the devcenter which says to use the "UpdateCell" or "UpdateRow" events to make sure the changes are reflected to the DataTable (or any source actually).
Since my DataTable does not hold a real usable Primary Key I'm trying to update my rows using the rowindex. For some reason the "e.Cell.Rows.Index" is always -1 when I debug my code.
I must be missing something here...
Any comments are appreciated.