ParamQuery grid support forum
General Category => Help for ParamQuery Pro => Topic started by: gopigupta on January 05, 2024, 01:12:50 pm
-
Hello,
I am using tree grid(vs.9.0.2). When child node is added, parent row shows leaf icon to indicate it has child rows(ScreenShot1). when I rollback changes using below code, the parent row still show leaf icon even though it does not contain any child rows(ScreenShot2).
GridApi.rollback();
GridApi.refreshDataAndView();
Can you please provide solution on how to remove leaf icon if parent node does not have any child nodes
-
Please use leafIfEmpty property of treeModel.
https://paramquery.com/pro/api#option-treeModel
-
Thank you for quick reply.
The solution provided below(leafIfEmpty property) only works well if we use deleteNodes to remove child nodes. I want to undo all changes so I have used rollback followed by refreshDataAndView. Adding leafIfEmpty: true does not solve issue in this case.
-
Please use this fix ( change event callback )
//fix leafIfEmpty for rollback.
change: function(evt, ui){
var T = this.Tree();
if(ui.source == 'rollback' && ui.deleteList.length ){
T.refreshViewFull();
ui.deleteList.forEach(function( obj ){
var parent = T.getParent( obj.rowData );
if( parent && T.isEmpty(parent) )
T.makeLeaf( parent );
})
}
},
-
Thank you for providing solution.