Change sAjaxSource input parameter

Change sAjaxSource input parameter

SanjeevBudhaSanjeevBudha Posts: 1Questions: 1Answers: 0

var oTable = $('#requestDatatbl').dataTable({
"sPaginationType": "full_numbers",
"bStateSave": true,
"bLengthChange": true,
"bServerSide": true,
"bProcessing":true,
"aaSorting": [
[ 0, "desc" ]
],"aoColumnDefs": colmn,
"sAjaxSource": "${createLink(controller: 'invoice', action:'serverSidePagination')}",
"aoColumns": includedColumns,
"bAutoWidth": false,
"fnDrawCallback": function () {
if ($('#requestDatatbl_paginate span a.paginate_button').size()) {
$('#requestDatatbl_paginate')[0].style.display = "block";
} else {
$('#requestDatatbl_paginate')[0].style.display = "none";
}
}/*,
"sDom": 'T<"clear">lfrtip',
"oTableTools": {
"aButtons": [ {
"sExtends": "download",
"sButtonText": "<span>Invoice</span>",
"sUrl": "${createLink(controller: 'invoice', action:'exportInvoice')}"
} ]
}*/

            }
    )

The Problem is Now I want different parameter in sAjaxSource.

This discussion has been closed.