ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: scoular on November 08, 2023, 03:07:07 pm
-
I have nested grids with local data. How can I only show the expand/collapse icon if child records exist? I also don't want to render a child grid when no child records exist.
Also is it possible to change the expand/collapse icon to something else like a +/- instead of the arrow icons?
-
1. You can implement column.render callback in the detail column and return "" to hide the icon.
render: function(ui){
var rd = ui.rowData;
if ( condition ){
return ""; //no icon.
}
}
2. you can set detailModel.collapseIcon to ui-icon-plus and detailModel.expandIcon to ui-icon-minus. Please see detailModel API
https://paramquery.com/pro/api#option-detailModel
-
Example of hiding expand icon.
https://paramquery.com/pro/demos/detail