ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: jplevene on April 30, 2024, 10:56:15 pm
-
I am doing column rendering that adds some elements in certain columns. A rowComplete or rowRendered is what I need as after I render a row, I need to do some JS and formatting on the elements in the row (can't do it in column.render as there are lookups between the columns).
Currently I am using the following rowInit option:
rowInit: function(ui) {
setTimeout(function(){
var row = that.picklist_grid.pqGrid("getRow", {rowIndxPage:ui.rowIndxPage});
console.log(row);
}, 30);
},
The above works, but it is not clean.
-
Please check column.postRender
https://paramquery.com/pro/demos/charts_inline
-
That is for a column, not a row. Is there a rowPostRender?
-
There is no equivalent post Render for the row.
-
Please can you add this for the next version.