Save Option in IE has noticeable pause

Save Option in IE has noticeable pause

awilbournawilbourn Posts: 6Questions: 3Answers: 0

I have a page that has about 400 records to show. I use DT to allow the quick search and sort option, as well as the save where you were so when you come back to the page it takes them right back to where they were. The definition of my DT is as follows, they like the count to change as the scroll through the data and I have a fixed size so they always see the header and footer.

What can be done to get rid of the pause during the save, a if I remove the save option it does not pause.


$('#tblEntrants').dataTable({ paging: true, "bAutoWidth": false, "sScrollY": "600", "sScrollX": "1100", dom: "frtiS", "processing": true, "data": data, "columns": [ { "data": "EntrantID", className: "default", "defaultContent": "" }, { "data": "Modify_By" }, { "data": "Status" }, { "data": "ReceivedDate" }, { "data": "PCNum" }, { "data": "ClassCode" }, { "data": "OwnerName" }, { "data": "POCName" }, { "data": "Year"}, { "data": "Make" }, { "data": "Model" }, { "data": "DisplayName" } ], scrollY: "600", scrollCollapse: true, stateSave: true, //retrieve: true, "columnDefs": [{ "targets": 0, "data": "EntrantID", "render": function (data, type, full, meta) { return '<input type="image" src="/shop/images/Pencil16x16.jpg" BorderStyle="None" onClick="return doEdit(' + data + ');" ToolTip="Edit Item" Height="16" Width="16" />&nbsp;&nbsp;<input type="image" onClick="return deleteEntry(this,' + data + ');" src="/shop/images/Button-Cancel16x16.jpg" BorderStyle="None" ToolTip="Delete Item" Width="16" Height="16" />&nbsp;&nbsp;'; } }], "fnRowCallback": function (nRow, aData, iDisplayIndex) { if (iDisplayIndex == 0) $('td', nRow).attr('nowrap', 'nowrap'); if (aData.Modify_By != undefined && aData.Modify_By.toLowerCase().indexOf("somename") >=0) { $('td', nRow).addClass("default"); } else { $('td', nRow).addClass("hlght"); } return nRow; }
This discussion has been closed.