Jquery Ajax submit - Datatable is not sent to the submission
Jquery Ajax submit - Datatable is not sent to the submission
[code]$.ajax({
type:'POST',
data:$('#form-create').serialize(),
[/code]
[code]
oTable = $('#datatables').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
[/code]
This is sending only the other form data which are not datatables.
I want to send the form data and datatables together for the submission.
What is the best way to achieve this?
type:'POST',
data:$('#form-create').serialize(),
[/code]
[code]
oTable = $('#datatables').dataTable({
"bJQueryUI": true,
"sPaginationType": "full_numbers"
});
[/code]
This is sending only the other form data which are not datatables.
I want to send the form data and datatables together for the submission.
What is the best way to achieve this?
This discussion has been closed.