PMCORE-3485

This commit is contained in:
Andrea Adamczyk
2021-11-09 09:16:31 -04:00
parent 58d19cbe55
commit ab5c8b1b10

View File

@@ -584,12 +584,14 @@ Ext.onReady(function () {
}
if (_nodeId != '') {
treePanel1 = parent.Ext.getCmp('tree-panel');
if (treePanel1) {
node = treePanel1.getNodeById(_nodeId);
}
if (node) {
node.select();
if (parent.Ext) {
treePanel1 = parent.Ext.getCmp('tree-panel');
if (treePanel1) {
node = treePanel1.getNodeById(_nodeId);
}
if (node) {
node.select();
}
}
}