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
110
Row deletion from server side
posted

I need to delete a WebDataGrid row from server side. Could you please provide some sample code for achieving this?

 

Thanks,

Monika

Parents
  • 16310
    Offline posted

    Hello Monika,

    You cannot delete a WebDataGrid from server side. You can delete a row programmatically only on the client using the following:

    var grid = $find("WebDataGrid1")

    // remove first row
    grid.get_rows().remove(grid.get_rows().get_row(0));

    Please let me know if you need further assistance on the issue, I will be glad to help.

Reply Children
No Data