How to serialize form elements located in tfoot of DataTable ?
How to serialize form elements located in tfoot of DataTable ?
The DataTable html table tags are wrapped inside the form tags.
I have tried
var dataserialized = oTable.children('tfoot input').serialize();
var dataserialized = oTable.children('tfoot').$('input').serialize();
var dataserialized = oTable.$('tfoot').$('input').serialize();
Nothing works
I have tried
var dataserialized = oTable.children('tfoot input').serialize();
var dataserialized = oTable.children('tfoot').$('input').serialize();
var dataserialized = oTable.$('tfoot').$('input').serialize();
Nothing works
This discussion has been closed.