Automatically create Same footer as header
Automatically create Same footer as header
chaitanya21
Posts: 1Questions: 0Answers: 0
$(document).ready(function()]
{
var table=$('#resultSet').DataTable( {
"data": <%=dataSet%>,
"columns": <%=columnHeaders%>,
"paging": true,
"ordering": true,
"info": true
}
);
} );
html tag:
table id="resultSet" cellpadding="0" cellspacing="0" border="0" class="display"></table>
I want to automatically create footer same as header. So that i can create column filtering at footer.
I dont want to explicitly create tfoot tag in table. it should automatically when column is created.
can we do that??? what changes i sholud create in Datatable.js
This discussion has been closed.