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
This problem was found when "Log files" was clicked, and go to another page,
and log entries loaded all. But after the dropdown "Show entries (page length)" the pagination working fine.
The text was updated successfully, but these errors were encountered:
In function fnDisplayEnd in jquery.dataTables.min.js fnDisplayEnd: function () { **_var a = this._iDisplayLength_**, b = this._iDisplayStart, c = b + a, d = this.aiDisplay.length, e = this.oFeatures, f = e.bPaginate; return e.bServerSide ? !1 === f || -1 === a ? b + d : Math.min(b + a, this._iRecordsDisplay) : !f || c > d || -1 === a ? d : c }
var a is being initialized as string somehow...which is causing issue. On changing page length from dropdown this var is getting initialized as number.
on parsing it to Int as var a = parseInt(this._iDisplayLength) ,it works fine.
The text was updated successfully, but these errors were encountered: