Problem server-side processing under Jquery tabs control
Problem server-side processing under Jquery tabs control
Hi, I have the simple data table
$(document).ready(function () {
$('#tblServiceLogs').dataTable({
"sPaginationType": "full_numbers",
"bServerSide": true,
"sAjaxSource": "AjaxHandlerForServiceLogs"
});
This datatable loads fine in normal page. But when I put the datatable under Jquery tab control data, the it does not work.
It works fine in JQuery tab control in case of no server-side processing.
Please help.
$(document).ready(function () {
$('#tblServiceLogs').dataTable({
"sPaginationType": "full_numbers",
"bServerSide": true,
"sAjaxSource": "AjaxHandlerForServiceLogs"
});
This datatable loads fine in normal page. But when I put the datatable under Jquery tab control data, the it does not work.
It works fine in JQuery tab control in case of no server-side processing.
Please help.
This discussion has been closed.