aimaraJS
aimaraJS copied to clipboard
how to set link
i want set a link how to do?
You want to create tree nodes as links?
If so, then all you have to do is create nodes with html tags instead of regular text for the Text parameter.
For example:
node1 = tree.createNode('<a href="http://www.google.com">Link to google</a>',false,'images/star.png',null,null,null);
You can add a class to this tag and style it.
thank you very mach! but If the plugin is in the public folder of the project, how do you change the path of the icon in your plugin?