I'll try to continue...
in current 1.1.12 that TreeModelBase.setNodeId() doesn't exist anymore, and I remember there was some discussion somewhere that something replaces those getters/setters, but can't find it... is there some easy way to get the old functionality back? Is there some example how?
-- VLi ---
On 3/16/06, Vesa Lindfors <[EMAIL PROTECTED]> wrote:
Hi,
I have used tree2 in following way when looping it:
public void searchTree(ActionEvent event) {
TreeModelBase model = (TreeModelBase)this.tree.getValue();
...
model.setNodeId (nodeId);
TreeNode node = model.getNode();
...