Author Topic: Upgrade to Pro Version 9.0.2  (Read 824 times)

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Upgrade to Pro Version 9.0.2
« on: September 11, 2023, 07:02:49 pm »
Dear All

We are pleased to announce the release of version v9.0.2, a bug fix update for version 9.0.0

Release notes for version 9.0.0 are here: https://paramquery.com/forum/index.php?topic=4627.0

Some of the fixes are related to validation tooltip, copy/paste of text with line breaks, import/export to xlsx w.r.t ISO datetimes and difference of timezones, pivot grandsummary for count function, row selections.

Best Regards
The ParamQuery Team
« Last Edit: September 11, 2023, 07:05:01 pm by paramvir »

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Re: Upgrade to Pro Version 9.0.2
« Reply #1 on: September 13, 2023, 07:36:50 am »
If you are using pqtooltip in pqgrid, please apply this patch, it applies to v9.0.2 only.

Add it after including pqgrid js file and before initialization of any pqgrid. It can be added in script tags or a js file.

Angular, React, Vue users can add it by importing $ and add the code below.

Code: [Select]
$.paramquery.pqGrid.prototype.getCell=function(e){if(e){e.vci>=0&&(e.colIndx=this.iCols.getci(e.vci));var i=this.normalize(e),r=i.rowIndxPage,t=i.colIndx,l=this.iRenderB.getCell(r,t)}return $(l)};

YONGHOO KIM

  • Pro Ultimate
  • Newbie
  • *
  • Posts: 20
    • View Profile
Re: Upgrade to Pro Version 9.0.2
« Reply #2 on: September 14, 2023, 12:28:23 pm »
Hi pqgrid !
It works well
Do you have a plan to include this guide into your core source on next release?

Thanks in advanced

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Re: Upgrade to Pro Version 9.0.2
« Reply #3 on: September 15, 2023, 06:40:51 am »
Yes of course the fix would be included in the source code of next version and this patch won't be required

paramvir

  • Administrator
  • Hero Member
  • *****
  • Posts: 6210
    • View Profile
Re: Upgrade to Pro Version 9.0.2
« Reply #4 on: December 06, 2023, 01:08:39 pm »
Please use this patch to fix the context menu alignment in v9.0.x.

Code: [Select]
$.paramquery.cContext.prototype.onContext=function(t,o){if(o.my="left top",this.model.on)return this.showMenu(t,o)};
« Last Edit: December 06, 2023, 01:11:36 pm by paramvir »