Hello, Can anybody tell me if is it possible ( and if is, how to achive it ? ) adding new row to UltraGrid and user will have an option SAVE. if user clicks on Save It will automatically Update in the database. (at runtime).
I enabled option Adding new Row for the UltraGrid.So i'm able to add new row to UltraGrid. But i want to know how to Save that row in Database?
Any help is appreciated..
Thanks,
Best regards,
Sankar
Hi Sankar,
The grid only deals with the local data source. The interaction between the data source and that back end (the database) is outside of the grid's purview.
So how you update your database depends on what kind of data source you are using. If your data source is a DataSet, then the typical way to update to back end would be to use a DataAdapter.
Hi Mike,
Thanks for your advice.
In my appliction Datasource for UltraGrid is Dataset. (I am
Then at runtime user will enter newrow to the UltraGrid.That row will be updated in the database.
How can i do it? Can you please provide some links/code for this? I'm new to this concept.
Thanks in advance.