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
20
Utrawebgrid click event on a button in the grid.
posted

Hi,

I use UtraWebGrid and in one of the  column, i have  buttons use for update the SQL database with any change in that row.  My problem is on the click event:
UltraWebGrid1.DisplayLayout.ClientSideEvents.ClickCellButtonHandler

How do i write a javascrip to connect to the SQL database and update the database with the change that user edit in that row.

Any help is greatly appreciated.

Ddee

  • 813
    posted

    ClickCellButtonHandler takes GridName and CellId.

    by cell ID you can get row and its data.

    add an asyn call to the server pass the data and it should save that.

    or you can implement webservice to save this data.