Hi, here is a patch for getCellHoverDelay to ensure that this.getField(colNum) is not null
Code:
if (window.isc && (isc.version.startsWith("v12.0") )){ isc.ListGrid.getPrototype().addProperties({ getCellHoverDelay : function (record, rowNum, colNum) { if(this.getField(colNum)!=null){ fieldDelay = this.getField(colNum).hoverDelay; if (fieldDelay != null) return fieldDelay; } return this.hoverDelay; } }) }
Comment