Sorry about my english....
I will try to explain with and example:
I have an HTML tree:
<div id="funciones">
<ul>
<li id="1" rel="N1" >...</li>
<ul>
<li id="11" rel="N2" >...</li>
<ul>
<li id="111" rel="N3" >...</li>
and when the tree is loaded, i want to make visible the item with
id=111 (so, the 3th level item)
If i do:
jQuery("#funciones").jstree("open_node", "#11");
it is not "visible" because its father (id=1) is not opened.
So i must do
jQuery("#funciones").jstree("open_node", "#1");
jQuery("#funciones").jstree("open_node", "#11");
and it works.
But there is not a way to open all the hierarchy with just 1 function?
like "open_hierarchy", or "open_all_nodes"?
Thanks!!
> What do you need to do - if it isopenanodewith code:
>
> $("#tree").jstree("open_node","#node-id"); // for example :)
>
> Cheers,
> Ivan
>
> On 1 Юли, 12:06, raimon <
raimonarde...@hotmail.com> wrote:
>
>
>
> > And using new version 1.0? how could iopenanodefrom a certain
> > > - Mostra el text citat -- Amaga el text entre cometes -