You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When initializing the number of rows (totalRows), the computed value is no more an integer, but a string.
See code on line 1259.
The value is then passed to the formatShowingRows() function. If this function is overriden, the comparaison with filtered rows can produce invalid results.
Example(s)
In the image below, the totalRows is an string not an integer:
Possible Solutions
Maybe the totalRows value must be converted back to integer, before calling the formatShowingRows() function.
The text was updated successfully, but these errors were encountered:
Bootstraptable version(s) affected
1.24.0
Description
When initializing the number of rows (
totalRows
), the computed value is no more an integer, but a string.See code on line 1259.
The value is then passed to the
formatShowingRows()
function. If this function is overriden, the comparaison with filtered rows can produce invalid results.Example(s)
In the image below, the
totalRows
is an string not an integer:Possible Solutions
Maybe the
totalRows
value must be converted back to integer, before calling theformatShowingRows()
function.The text was updated successfully, but these errors were encountered: