Hello,
How to add new value to ultragrid datasource from gridview.For example :Update ultragrid datasource editing values to ultragrid cells.Ultragrid datasource is datatable.
Thanks
Hello Ilkin,
You could use the following code for this:
ultraGrid1.DisplayLayout.Bands[0].AddNew();
Also, you could take a look at the template add new row feature:
ultraGrid1.DisplayLayout.Override.AllowAddNew = AllowAddNew.TemplateOnBottom;
Is this helpful? Please let me know.