jQuery UI Widgets Forums Grid Grid is not loading data into columns that are inside the scrollbar

This topic contains 2 replies, has 2 voices, and was last updated by  udayasri 8 years, 7 months ago.

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author

  • udayasri
    Participant

    Hi,
    I am using jqxgrid, in this I am binding columns dynamically. Column type is checkbox. whenever I am loading grid with so many columns it is showing horizontal scroll bar, when I scroll to the end it is not showing or loading any data in those columns. By keeping the scrollbar at the end of a load the grid again it is displaying data in the last columns but not loading data in the first columns that are hide in the scrollbar.

    Please help me on this, it is really urgent.


    Peter Stoev
    Keymaster

    Hi udayasri,

    As we cannot reproduce this with jQWidgets 3.4(current version) then please share a jsfiddle.net demo which illustrates your scenario.

    Best Regards,
    Peter Stoev

    jQWidgets Team
    http://www.jqwidgets.com


    udayasri
    Participant

    Hi Peter,

    Thanks for the reply. I’ve tried with JQWudget 3.4, still I am getting the issue. data is not refreshing on scrollbar. Sorry I wasn’t able to post it in jsfiddle. Any how I’ve fixed it by using scroll event.

    $(“#jqxMarketingListGrid”).jqxGrid(
    {
    source: dataAdapter,
    editable: true,
    columnsresize: true,
    columns: funMarketListGridClmsArray(),
    ready: function () {
    $(“body”).mousemove(function () {
    var scrolling = $(“#jqxMarketingListGrid”).jqxGrid(“scrolling”);
    if (scrolling.horizontal == true) {
    $(‘#jqxMarketingListGrid’).jqxGrid(‘refreshdata’);
    };
    });
    LoadingWindow(false, ” “);
    }
    });

    But this made my scrollbar move lazy.

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

You must be logged in to reply to this topic.