jQWidgets Forums

Forum Replies Created

Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts

  • jgaris
    Participant

    I used your example which worked fine our site, and I was able to determine that the original issue I mentioned (blank rows/groups) happens only when “virtualmode” is used. I turned virtualmode off on my site, and the issue went away, however paging stopped working. Any thoughts?


    jgaris
    Participant

    I came up with the following solution, which works in removing the empty groups…


    control.jqxGrid(settings);
    control.jqxGrid('exportInitialize', exportFileName);

    control.on("bindingcomplete", function (event) {
    var $emptygroup = $('.jqx-grid-groups-row-details:empty');
    var $emptycell = $('.jqx-grid-empty-cell');
    if ($emptygroup.length) {
    $emptygroup.parent().parent().parent().nextAll().remove();
    if ($emptycell.length == 0) {
    $emptygroup.parent().parent().parent().remove();
    }
    $(".jqx-grid-content").css("border-bottom", "1px solid #aaa");
    }
    control.jqxGrid('expandallgroups');
    });

    The only issue remaining, is that the height of the grid does not change, it just shows white space. Is there a way to recalculate the height after a change like this?

    in reply to: copy cell value copy cell value #20783

    jgaris
    Participant

    I am experiencing the same issue. “enablebrowserselection: true” has no effect in 2.8.1


    jgaris
    Participant

    I am currently using 2.8.1. I tried 2.8.3 but the expand/collapse of groups was not working so I reverted back to 2.8.1.

Viewing 4 posts - 16 through 19 (of 19 total)