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
I don't know how to display itemCount on pager , if can support like {itemCount} parameter for manipulating pagerFormat ?
Thanks very much !
The text was updated successfully, but these errors were encountered:
Thank you for the request! It looks valuable and worth to be implemented.
For now you can use following workaround:
$("#jsGrid").jsGrid({ ... pagerFormat: "total items: {itemsCount}", onRefreshed: function() { $(".jsgrid-pager").contents().filter(function() { return this.nodeType == 3; }).each(function(){ this.textContent = this.textContent.replace('{itemsCount}', $("#jsGrid").jsGrid("_itemsCount")); }); } });
Hope it will help.
Sorry, something went wrong.
Thank you so quick to reply , It is helpful for me , I like your coding style !! nice project !!
Thank you!
67143ba
No branches or pull requests
I don't know how to display itemCount on pager , if can support like {itemCount} parameter for manipulating pagerFormat ?
Thanks very much !
The text was updated successfully, but these errors were encountered: