jquery.bootgird.js - type cast issue, pull in 7b8da26bb8

This commit is contained in:
Ad Schellevis 2022-08-17 11:11:37 +02:00
parent 29e6e12d7c
commit fc7d892c3c

View File

@ -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);