| Issue 4: | blank rows | |
| 2 people starred this issue and may be notified of changes. | Back to list |
Hi,
I think the line:
<code>
// remove all stub rows
$('.stubCell', this).remove();
</code>
must be placed after adding the stub rows and not above.
This will fix the blank rows when initializing the plugin with less rows than the initial pagination.
Example if rows per page = 50 and the retrieved data is 25 rows, you will get 25 blank rows, by changing this, the blank rows will be removed at init and no empty rows will be shown.
Hope its useful!
|