How to serialize form elements located in tfoot of DataTable ?

How to serialize form elements located in tfoot of DataTable ?

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