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.