We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello
I was just changing the status text of the pager that gets displayed. Then I saw this code: https://github.com/mleibman/SlickGrid/blob/master/controls/slick.pager.js Line 135 - 146
if (pagingInfo.pageSize == 0) { var totalRowsCount = dataView.getItems().length; var visibleRowsCount = pagingInfo.totalRows; if (visibleRowsCount < totalRowsCount) { $status.text("Showing " + visibleRowsCount + " of " + totalRowsCount + " rows"); } else { $status.text("Showing all " + totalRowsCount + " rows"); } $status.text("Showing all " + pagingInfo.totalRows + " rows"); } else { $status.text("Showing page " + (pagingInfo.pageNum + 1) + " of " + pagingInfo.totalPages); }
The $status.text("Showing all " + pagingInfo.totalRows + " rows"); just overwrites the if above it.
What should this code be.
Thanks
The text was updated successfully, but these errors were encountered:
This has been integrated into my 'alternative master'. See #1055
Sorry, something went wrong.
No branches or pull requests
Hello
I was just changing the status text of the pager that gets displayed. Then I saw this code:
https://github.com/mleibman/SlickGrid/blob/master/controls/slick.pager.js Line 135 - 146
The $status.text("Showing all " + pagingInfo.totalRows + " rows"); just overwrites the if above it.
What should this code be.
Thanks
The text was updated successfully, but these errors were encountered: