Use Tree Picker in UI Page
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-25-2023 07:26 AM
Hello,
I am trying to utilize the tree picker tool with a UI page I am creating. I am trying to list groups and have users in each group as the child component. I tried to utilize GwtTree2 and it seems to display the groups correctly but does not expand correctly to show the users in each group. I have tried using different processors but can't seem to get it to expand correctly.
Is it possible to list the groups and users using tree picker? Thank you for your time and help.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-07-2023 03:35 AM
Hi Kenny,
Did you get any solution for this issue. I am also trying to use GwtTree2 but its not working properly.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-27-2024 04:45 AM
Hi, this is the code used in the ScriptTableTree.js file to create a tree of scripts, maybe can help:
initialize: function(treeName, element, table, target, includeFunctions) {
GwtTree2.prototype.initialize.call(this, treeName, element);
this.xmlItemNodeName = "item";
this.showRootNode = false;
this.tableName = table;
this.target = target;
this.treeElement= element;
this.includeFunctions = includeFunctions;
this.email = false;
this.syntaxEditor = false;
this.tinymce = false;
this.fieldMsg = getMessage("uppercase_fields");
},