Asp.net Gridview with jQuery DataTable - Gridview events do not fire

In my Asp.net web application, I have a page with a Gridview with the correct database binding and the Delete / Add / Update function works well.

An event like GridView1_RowDeleting , GridView1_RowEditing , GridView1_RowUpdating works well,

Then later I added a JQuery DataTable and it looks great, but now other events are not working.

How can I trigger these events or how can I achieve Change / Update / Delete . Is new with jQuery DataTable.

0
source share
1 answer

You can add edit/update/save/delete your DataTable by following this example or using editor

0
source

Source: https://habr.com/ru/post/1483736/


All Articles