jQuery UI Widgets Forums Grid Grid row numbers

This topic contains 11 replies, has 4 voices, and was last updated by  Dimitar 11 years, 1 month ago.

Viewing 12 posts - 1 through 12 (of 12 total)
  • Author
  • Grid row numbers #49242

    joaompc
    Participant

    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

    Grid row numbers #49244

    sumit
    Participant

    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 Singh

    Grid row numbers #49248

    mallepaddi
    Participant

    Hi

    var localizationobj = {};
    localizationobj.emptydatastring = “We donot have any record for checkout”;

    $(“#jqxgrid”).jqxGrid(‘localizestrings’, localizationobj);

    Hope it helps

    Thanks

    Grid row numbers #49249

    Dimitar
    Participant

    Hello joaompc,

    You need to disable paging. To do so, please set the pageable property to false.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

    Grid row numbers #49250

    mallepaddi
    Participant

    Hi

    Does that mean Localization won’t work when we pageable property set to true ?

    Thanks

    Grid row numbers #49252

    sumit
    Participant

    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.

    Grid row numbers #49253

    mallepaddi
    Participant

    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

    Grid row numbers #49254

    sumit
    Participant

    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

    Grid row numbers #49256

    mallepaddi
    Participant

    HI

    it works for me when i place code in between .. have you tried “bindingcomplete” ?

    $(‘#grid’).on(‘bindingcomplete’, function (event) {

    …………..

    }

    Thanks

    Grid row numbers #49261

    sumit
    Participant

    Thanks Mallepaddi,Now its working fine. Thanks once again for quick help.

    Grid row numbers #49269

    joaompc
    Participant

    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?

    Grid row numbers #49299

    Dimitar
    Participant

    Hi joaompc,

    Unfortunately, you cannot combine the features of a pageable and a non-pageable grid.

    Best Regards,
    Dimitar

    jQWidgets team
    http://www.jqwidgets.com/

Viewing 12 posts - 1 through 12 (of 12 total)

You must be logged in to reply to this topic.