Select ExtJS TreeNode Programmatically


/ Published in: JavaScript
Save to your folder(s)

Ensure your node has been rendered yet.


Copy this code and paste it in your HTML
  1. var node = yourtree.getNodeById(yournodeid);
  2. // that didn't work for me: node.select();
  3. node.select.defer(100, node);

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.