Hi!
Is there a way to know if a row has been added using the bottom template add row?
I mean, if I add 10 rows using the bottom row, is there a way to differentiate those 10 of the rest of the grid's rows ?
Thank you!
Hi,
Have you been able to resolve your issue ? If you have any questions, do not hesitate to ask me
Regards
Georgi
Typically, this is a job for the DataSource, not the grid. If you are using a DataSet/DataTable, for example, these objects track all changes to the data for you. The DataAdapter knows how to read those changes so that it can update the back end.
Hello,
I'm not sure what functionality the UltraGrid provides in this regard, but if you use a BindingList(of T) as your datasource, there is an event you can handle: "ListChanged". You'll probably have to enable that event using the "RaiseListChangedEvents" property.
The event should be triggered when items are added, removed or changed in the list.
Michael