Hi ParamQuery,
there is following situation:
When loading data + colModel from server and generation the pqGrid like this:
.. dataModel: {
location: 'remote',
recIndx: "ID",
dataType: "JSON",
url: "... ",
getData: function (dataJSON, textStatus, jqXHR) {
// Add a nested column
dataJSON.columns.unshift(
{ title: "Nested data ",width:100, type: "detail", resizable: false, editable: false,
menuInHide: true, menuUI: {tabs:['hideCols']}
});
// Generation of former column fails not showing the arrow indicator ..
this.refreshCM(dataJSON.columns);
return {data: dataJSON.rows};
}
}
the arrow indicator of nested grids is not shown.
I tried several possibilities and every time colModel + nested data is loaded by "pqGrid.refreshCM(dataJSON.columns);" the nested grid arrow is not rendered ..
A solution would be great :-)