hello everyone, I am trying to implement a JQuery DataTables to my grid view inside a content page. Unfortunately, this is what I get

It treats the radio button as the target table

Below is my script
$(document).ready(function () {
$("#ContentPlaceHolder1_gvList").prepend($("").append($(this).find("tr:first"))).DataTable();
});
I tried to use below script but nothing happens:
$(document).ready(function () {
$('#<%=gvList.ClientID%>').DataTable();
Hope someone can help me.

Jes SiePosted Sep 1, 2021, 5:06 AM
I am not sure if the reason is the class inside the gridview
Jes SiePosted Sep 1, 2021, 5:04 AM
Sachin SinghPosted Sep 1, 2021, 4:56 AM