ParamQuery grid support forum

General Category => Bug Report => Topic started by: YONGHOO KIM on September 12, 2023, 01:06:53 pm

Title: Error with addRow while using pqtooltip
Post by: YONGHOO KIM on September 12, 2023, 01:06:53 pm
Dear PQ grid

We downloaded and applied the recently released version 9.0.2.
However, an attachment error occurs in the add row function, which previously had no problems.

What should we check?

Title: Re: Error with addRow while using pqtooltip
Post by: paramvir on September 12, 2023, 08:07:59 pm
Please use this patch to get rid of the error. Add it after including pqgrid js file and before initialization of any pqgrid.

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)};