jQWidgets Forums

Forum Replies Created

Viewing 1 post (of 1 total)
  • Author
    Posts

  • 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 1 post (of 1 total)