How to use the Customize filter in the Server Side Processing??

How to use the Customize filter in the Server Side Processing??

rajaaarajaaa Posts: 21Questions: 10Answers: 2

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

  • mRendermRender Posts: 151Questions: 26Answers: 13

    I'm not sure I fully understand what your question is. Do you want to pass some variables to your server side processing page?

This discussion has been closed.