Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
75
Adding New Row to UltrGrid and Saving that row in Database
posted

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 

 

Parents
  • 469350
    Verified Answer
    Offline posted

    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. 

Reply Children