Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - ali

Pages: [1]
2
Instead of

data: JSON.stringify(jsonToBeSend),

try

postData: JSON.stringify(jsonToBeSend),

3
In the render function return html with title='tooltip' - what ever text you set in the title attribute will appear as tool tip in most browsers. See for more info;

https://www.w3schools.com/tags/att_global_title.asp

4
There seems to a massive performance gap between v2.0.4 and newer version of the free gird v2.1.0 & v2.2.0 when it comes to selecting  up to 1000 rows via the selectAll checkbox.

Easiest way to show and demo this is via this demo;
https://paramquery.com/demos/selection_checkbox

- copy and paste the data so they are at least 1000 rows
- set pageModel: {type:"local", rPP:1000 }, - to display 1000 rows by default
- set flexHeight:false, - makes it easier to view the grid, makes no difference to this demo if true or false

selectAll on checkbox in the header and it takes roughly about 11-12 seconds (tested on a i5-5275u, 8gb ram and i7 with 32gb ram - times are roughly the same). The action completes eventually after 12 seconds in Chrome. Firefox and IE will give an script error as it's been running too long;



I've run the same test on v2.1.0 and v2.2.0 and get the same results.

The same test on v2.0.4 doesn't have this performance lag - the selectAll is pretty much instant.

Any fix for this?

5
Your dataModel does a POST back to controller but there is no getData function to get and set the data

Pages: [1]