Fixed rows
Fixed rows
Is there anyway that shows a fixed number of rows on each page after a number is clicked so the height of the table can stay the same?
It is possible to load the data into the empty rows only after the a search or filter is made?
Please share with me if you guys have any solution. Thank you very much.
It is possible to load the data into the empty rows only after the a search or filter is made?
Please share with me if you guys have any solution. Thank you very much.
This discussion has been closed.
Replies
[code] $('#example')').dataTable({
"aoColumns": [null,null,null,null,null],
"iDisplayLength" : 20
});
[/code]