// if this is the root just refresh from the top
Tree tree = treeGrid.getTree();
TreeNode refreshNode = tree.getParent(node);
if (null == refreshNode.getName()) {
tree.reloadChildren(node);
return;
}
// reloads are performed only on resource nodes. find the first parental resource node, traversing
// through autogroup and subcategory nodes as needed.