6
Answers

i need a jquery datatable for listview in asp.net

<script type="text/javascript">
$(function () {
$("#example").prepend($("<thead></thead>").append($(this).find("tr:first"))).dataTable(
{
pageSize: 3,
searching: true,
ordering: false
}
);
})
</script>
this is my code example is listview id but its not working what i do for this,please help me. 

Answers (6)