How to use the Customize filter in the Server Side Processing??
How to use the Customize filter in the Server Side Processing??
I Want to use the Additional filter in addition to the default filter to the datatable to get the data in server side processing
<script type="text/javascript">
$(function(){
$('#example').dataTable( {
"processing": true,
"serverSide": true,
ajax: {
'url': 'test_db.php',
'data': {
formName: 'afscpMcn',
action: 'search',
},
},
"deferLoading": 50
});
});
</script>
Answers
I'm not sure I fully understand what your question is. Do you want to pass some variables to your server side processing page?