unable to display footer and pagination buttons

unable to display footer and pagination buttons

sakitksakitk Posts: 1Questions: 0Answers: 0
edited March 2014 in DataTables 1.9
Hi,

I am not able to display Footer in DataTable
Also my pagination button do not display correctly and they tend to merge with the last row of the table.
Any guess.???
[code]







Total




[/code]

[code]
function createTable(tblName, filterParams) {
oTable =null;
oTable = $("#tableData").dataTable({
"sAjaxSource" : "/getTableData/"+tblName,
"fnServerParams": function (aoData) {
aoData.push({name: "filterParamList", value: filterParams});
},
"bProcessing": true,
"iDisplayLength" : 10,
"bJQueryUI": true,
"sPaginationType": "full_numbers",
"aoColumns" : [ {
"sTitle" : "SSO ID",
"mData" : "sso_id",
"aTargets" : [ 0 ],
"bSortable" : true
}, {
"sTitle" : "Shop Name",
"mData" : "shop_name",
"aTargets" : [ 1 ],
"bSortable" : true,
"sClass" : "dataTable_editable"
}, {
"sTitle" : "User Type",
"mData" : "user_type",
"aTargets" : [ 2 ],
"bSortable" : true,
"sClass" : "dataTable_editable"
}]
});
}
[/code]

Replies

  • allanallan Posts: 61,446Questions: 1Answers: 10,054 Site admin
    Please link to a test case as required in the forum rules and clearly stated in the "New Discussion" form.

    Allan
This discussion has been closed.