Hi all,
i want to fill a IPickTreeItem within the GUI with a Tree.
This Tree is set with data from the server-side via an GWT RPC call.
The problem now is, that I the IPickTreeItem always just shows "Loading data..." but no data appears.
The approximate action is like this:
static Tree tree;
..
tree = new Tree();
"GWT RPC fills a TreeNode treenode"
...
tree.setRoot(treenode);
departmentItem = new IPickTreeItem();
departmentItem.setWidth(80);
departmentItem.setTitle("title");
departmentItem.setValueField("name");
departmentItem.setValueTree(tree);
I hope someone can help me.
Thanks a lot in advance,
Tobi
i want to fill a IPickTreeItem within the GUI with a Tree.
This Tree is set with data from the server-side via an GWT RPC call.
The problem now is, that I the IPickTreeItem always just shows "Loading data..." but no data appears.
The approximate action is like this:
static Tree tree;
..
tree = new Tree();
"GWT RPC fills a TreeNode treenode"
...
tree.setRoot(treenode);
departmentItem = new IPickTreeItem();
departmentItem.setWidth(80);
departmentItem.setTitle("title");
departmentItem.setValueField("name");
departmentItem.setValueTree(tree);
I hope someone can help me.
Thanks a lot in advance,
Tobi
Comment