hi can any one pls send a sample application how to insert data using ultra grid in C# pls
If you want to insert a row programmatically, the best way to do it is to insert the row into your data source, not the grid.
But it depends on a lot on what your data source is and whether it supports inserting and what kinds of binding notifications it sends.
If you must insert the row into the grid, then I would use the AddNew method on the band and the user the Move method to move the row into the position you want.
i want to insert a row through a Datasource and want to bind the souce to Grid
Hi Ravi,
It depends what you mean by "insert".
Do you want the users to be able to insert a row?
Or are you trying to do this programmatically?
Are you trying to insert into the grid or into the data source?
What kind of data source are you using?