jQuery UI Widgets › Forums › Grid › Grid row numbers
Tagged: bindingcomplete, emptydatastring, grid, jqxgrid, licalization, number, pageable, paging, row
This topic contains 11 replies, has 4 voices, and was last updated by Dimitar 11 years, 1 month ago.
-
AuthorGrid row numbers Posts
-
Hello,
How can I display all rows in the table? I can set 0, 10 or 20. But on load I would like to display all?
Thank you
Hello,
How to change the default message “No Data To Display” when our jqxgrid-view rows null, So please let me know how to change the message “No Data To Display” to “We don’t have any record for checkout”
Thanks
-Sumit SinghHi
var localizationobj = {};
localizationobj.emptydatastring = “We donot have any record for checkout”;$(“#jqxgrid”).jqxGrid(‘localizestrings’, localizationobj);
Hope it helps
Thanks
Hello joaompc,
You need to disable paging. To do so, please set the pageable property to false.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/Hi
Does that mean Localization won’t work when we pageable property set to true ?
Thanks
Hi All,
I am try above code at our end, code is not working. So please let me know the exact way how to change the message “No Data to Display” to “We donot have any record for checkout”,its very important for us please help me on this problem.
Hi
it works even with pageable set to TRUE
$(‘#grid’).on(‘bindingcomplete’, function (event) {
var localizationobj = {};
localizationobj.loadtext = “Processing ………………….. testing “;
localizationobj.emptydatastring = “We donot have any record for checkout”;
$(cartGrid).jqxGrid(‘localizestrings’, localizationobj);
}Thanks
Hi,
I am getting this alert The data is still loading. When the data binding is completed, the Grid raises the ‘bindingcomplete’ event. Call this function in the ‘bindingcomplete’ event handler.
Please help me to change the message when rows null in jqxgrid-view
HI
it works for me when i place code in between .. have you tried “bindingcomplete” ?
$(‘#grid’).on(‘bindingcomplete’, function (event) {
…………..
}
Thanks
Thanks Mallepaddi,Now its working fine. Thanks once again for quick help.
It works when set pageable to false. But is it possible to set a max row display and if that number is bigger then display a vertical scrollbar?
Hi joaompc,
Unfortunately, you cannot combine the features of a pageable and a non-pageable grid.
Best Regards,
DimitarjQWidgets team
http://www.jqwidgets.com/ -
AuthorPosts
You must be logged in to reply to this topic.