jQWidgets Forums

Forum Replies Created

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts

  • revilo7
    Participant

    Hello;
    I am getting to know jqwidgets controls and may use on a website for a client. Using test data we already exceed the 2MB limitation.
    Is it possible to host the export on my server using a Basic Website License?

    in reply to: export to excel error export to excel error #86716

    revilo7
    Participant

    Hello;
    I am getting to know jqwidgets controls and may use on a website for a client. Using test data we already exceed the 2MB limitation.
    Is it possible to host the export on my server using a Basic Website License?


    revilo7
    Participant

    Hello;
    I am getting to know jqwidgets controls and may use on a website for a client. Using test data we already exceed the 2MB limitation.
    Is it possible to host the export on my server using a Basic Website License?


    revilo7
    Participant

    Hello;
    I am getting to know jqwidgets controls and may use on a website for a client. Using test data we already exceed the 2MB limitation.

    Is it possible to host the export on my server using a Basic Website License?


    revilo7
    Participant

    I strongly suggest that your team looks into this as for making the same exercise with other JS plugins our team can’t find an increment in memory usage. Great looks on the widgets and great ease of use but this is a big issue for the site my company wants to design.


    revilo7
    Participant

    Hello Peter;
    I agree with you, I cannot find the widget in the DOM once the ‘destroy’ method is invoked. But I see a significant growth in memory every time I recreate the object.


    revilo7
    Participant

    Is this issue unattended? I am working with jqwidgets v3.5.0, jquery v1.11.1 in IE11 and Chrome 47 and having the same issue. We are evaluating possible jQuery plugins to design our company’s website. I programmatically unbinded the events and the memory keeps rising with each destroy –> reconstruct

    in reply to: Get Group Index Get Group Index #68765

    revilo7
    Participant

    Hello!
    I was trying somethin similar. My objective was to expand/collapse a group when its group row is clicked. Here’s how I accomplished it.

    if (event.args.rowindex == -1 && event.args.row.group != undefined) {
    var iter = true;
    var groupIndex = 0;
    while (iter) {
    if ($(‘#jqxGrid’).jqxGrid(‘getgroup’, groupIndex).group == event.args.row.group) {
    iter = false;
    break;
    }
    groupIndex += 1;
    }
    $(‘#jqxGrid’).jqxGrid($(‘#jqxGrid’).jqxGrid(‘getgroup’, groupIndex).expanded ? ‘collapsegroup’ : ‘expandgroup’, groupIndex);
    return;
    }

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