Author Topic: Upgrade to Pro Version 9.1.0  (Read 859 times)

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Upgrade to Pro Version 9.1.0
« on: November 29, 2023, 03:19:53 pm »
Dear All

We are excited to announce the release of version v9.1.0, with important enhancements and some bug fixes.

Version 9.1.0 is the latest release in the series, following versions 9.0.0, 9.0.1, and 9.0.2. The release notes for version 9.0.0 can be accessed via the following link: https://paramquery.com/forum/index.php?topic=4627.0

1) Performance boost: In this version you would experience significant drop in usage of system resources ( RAM and CPU ) thus leading to slick user experience especially noticeable in case of large number of records as compared to previous versions.
Example of loading 10 million records in pqgrid:  https://paramquery.com/pro/demos/virtual_scroll

2) Scaling support: This version of pqgrid supports css scaled transforms for grid as a whole or any of its ancestors ensuring proportional scaling of whole grid for a more versatile and dynamic user experience.

3) Hierarchical lines in case of row grouping, pivot and treegrid. By visually connecting related rows, users can quickly understand the organization and hierarchy of the information presented in the grid.

Examples:
https://paramquery.com/pro/demos/group_rows_hidden
https://paramquery.com/pro/demos/treegrid


4) Keyboard navigation: You can skip some of the columns with new column.skipFocus option while navigating through the cells with tab and arrow keys.

5) Enhancement in Row detail API ( detailModel.hasChild ) to skip row details and hide expand icons for specified rows.
Example: https://paramquery.com/pro/demos/nesting_local


Best Regards
The ParamQuery Team
« Last Edit: November 29, 2023, 03:26:49 pm by paramvir »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Re: Upgrade to Pro Version 9.1.0
« Reply #1 on: December 07, 2023, 09:49:35 pm »
Dear All

v9.1.1 which is a bug fix release version of v9.1.0 has been released.

Best Regards
The ParamQuery Team

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Re: Upgrade to Pro Version 9.1.0
« Reply #2 on: June 20, 2024, 11:28:48 am »
Please use the following patch to fix this issue: column filter popup options are not refreshed after grid data is changed

Patch: v9.1.1.1

Code: [Select]
pq.filter.rangeInit=function(e){var n=this,o=n.options.appendMenuToTarget,t=e.column,i=n.uuid+"_"+t.dataIndx,d=e.$editor,a=e.headMenu,l=e.filterUI,c=e=>{$("#"+i).remove()};a||d.parent().off("click keydown").on("click keydown",(function(e){var a=e.key,p=$("#"+i);function r(){pq.position(p,{my:"left top",at:"left bottom",of:d})}if(n.off("change",c).one("change",c),!a||"ArrowDown"==a||"Enter"==a){if(e.preventDefault(),p[0])p.is(":hidden")&&p.show();else{var f=new pq.cFilterMenu.select(n,t),u=p=$("<div id='"+i+"' style='width:270px;' class='pq-theme'><div></div></div>").appendTo(o?n.$header:document.body),s=u.children();pq.makePopup(u[0],d[0],{closeOnEle:!0}),r(),f.create(s,l)}r(),pq.focusEle(null,p)}}))};