Jquery Ajax submit - Datatable is not sent to the submission

Jquery Ajax submit - Datatable is not sent to the submission

agrizagriz Posts: 1Questions: 0Answers: 0
edited December 2013 in General
[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?
This discussion has been closed.