()
| 986 | } |
| 987 | |
| 988 | func reloadExplorerPage() { |
| 989 | explorerAttrsPanel.Clear() |
| 990 | explorerCache.Clear() |
| 991 | |
| 992 | rootNode = renderPartialTree(explorerBaseDN, SearchFilter) |
| 993 | if rootNode != nil { |
| 994 | numChildren := len(rootNode.GetChildren()) |
| 995 | updateLog("Tree updated successfully ("+strconv.Itoa(numChildren)+" objects found)", "green") |
| 996 | } |
| 997 | |
| 998 | treePanel.SetRoot(rootNode).SetCurrentNode(rootNode) |
| 999 | } |
no test coverage detected