jQWidgets Forums
Forum Replies Created
-
Author
-
August 19, 2016 at 9:13 pm in reply to: Export to html on grid causing error Export to html on grid causing error #86717
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?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?August 19, 2016 at 9:11 pm in reply to: Export Excel Request Entity Too Large Export Excel Request Entity Too Large #86715Hello;
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?August 19, 2016 at 9:10 pm in reply to: Problem with Export to Excel when 100 records in Grid. Problem with Export to Excel when 100 records in Grid. #86714Hello;
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?
December 21, 2015 at 3:03 pm in reply to: Potential memory leak in jqxGrid ? Potential memory leak in jqxGrid ? #79615I 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.
December 21, 2015 at 1:26 pm in reply to: Potential memory leak in jqxGrid ? Potential memory leak in jqxGrid ? #79608Hello 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.December 18, 2015 at 5:21 pm in reply to: Potential memory leak in jqxGrid ? Potential memory leak in jqxGrid ? #79526Is 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
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;
} -
AuthorPosts