Using Pagination input plugin and original pagination navigation?
Using Pagination input plugin and original pagination navigation?
I'm using the input.js plugin for paging and it's doing exactly what I need. I also need the original pagination navigation numbering that has clickable numbers. Is there anyway to include both on the page?
Here is where I'm currently calling the input plugin :
.DataTable(
{
"aoColumns": [
{ "sTitle": "Region", "mData": "region", "bSortable": true },
{ "sTitle": "Dealer Name", "mData": "dealer_name", "bSortable": true , "mRender": render_dealer},
{ "sTitle": "Open Date", "mData": "open_date", "bSortable": true },
{ "sTitle": "Loan Number", "mData": "commitment_id", "bSortable": true , "mRender": render_commitment },
{ "sTitle": "Current Payoff", "mData": "total_floorplan", "bSortable": true },
{ "sTitle": "Past Due", "mData": "past_due", "bSortable": true, "mRender": render_checkbox },
],
"searching": false,
"responsive": true,
oLanguage: {
sProcessing: "<img id='loader-gif' src='../../../assets/css/images/ajax-loader.gif'>"
},
"processing": true,
"serverSide": true,
"pagingType": "input",
"sAjaxSource": '/index.php/admin/ajaxLoanData/'+entries+'/0'+"/"+region+"/"+status+"/"+sort
}
);