mirror of
https://github.com/lucaspalomodevelop/core.git
synced 2026-03-15 00:54:41 +00:00
jquery.bootgird.js - type cast issue, pull in 7b8da26bb8
This commit is contained in:
parent
29e6e12d7c
commit
fc7d892c3c
@ -78,7 +78,7 @@ function init()
|
||||
|
||||
loadColumns.call(this); // Loads columns from HTML thead tag
|
||||
this.selection = this.options.selection && this.identifier != null;
|
||||
this.rowCount = localStorage.getItem('rowCount[' + this.uid + ']') || this.rowCount;
|
||||
this.rowCount = parseInt(localStorage.getItem('rowCount[' + this.uid + ']')) || this.rowCount;
|
||||
loadRows.call(this); // Loads rows from HTML tbody tag if ajax is false
|
||||
prepareTable.call(this);
|
||||
renderTableHeader.call(this);
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user