asp.net - Datatable taking long time for loading

asp.net - Datatable taking long time for loading

hanednalyhanednaly Posts: 1Questions: 1Answers: 0
edited March 2015 in Free community support

Hi all,
I have a website which is using the Datatable component.
I am a ASP.Net developer and using datatables in .net under vb.
my problem is before I using datatable gridview was loading speed than when I using datatable component talking long time for loading data on gridview (5000 row take 5 min),

jQuery(function ($) {
$(".table").prepend($("<thead></thead>").append($(this).find("tr:first")))
var oTable1 = $(".table").dataTable({
"bFilter": true,
"bPaginate": true,
"bLengthChange": true,
"bInfo": true,
"bDestroy": true,
"aoColumnDefs": [
{ 'bSortable': false, 'aTargets': [0] }
]
});
})

<asp:DataGrid ID="DatagrdJobs" runat="server" CssClass="table table-striped table-bordered table-hover" AutoGenerateColumns="false" ShowHeaderWhenEmpty="true"></asp:datagrid>
.

This discussion has been closed.