Tengo un código en el que necesito la capacidad de agregar nodos secundarios a un jstree que a su vez contienen hijos. El siguiente código agrega correctamente un nodo 'child2' a 'child1', pero ignora los datos de child3. Cualquier ayuda muy apreciada. Código sigue:jstree - agregando nodos secundarios que a su vez contienen hijos
<html>
<head>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.js"></script>
<script type="text/javascript" src="http://static.jstree.com/v.1.0rc2/jquery.jstree.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$(function() {
$("#tree").jstree({
"json_data" : {
"data" : [
{
"data" : "parent",
"attr" : { "id" : "root.id" },
"children" : [ { "data" : "child1",
"attr" : { "id" : "child1.id" },
"children" : [ ] }
]
},
]
},
"plugins" : [ "themes", "json_data", "crrm" ]
});
});
$("#add").click(function() {
$("#tree").jstree("create", $("#child1\\.id"), "inside",
{ "data" : "child2", "attr" : { "id" : "child2.id" },
"children" : [ { "data" : "child3", "attr" : { "id" : "child3.id" }, "children": [ ] } ] },
function() { alert("added"); }, true);
});
});
</script>
</head>
<body>
<div id="tree" name="tree"></div>
<input type="button" id="add" value="add" />
</body>
</html>
Quizás esto no es ¿posible? Presumía que la función de creación se implementó para que se repitiera sobre los niños, pero tal vez no ... Voy a echar un vistazo a la fuente ... – user419766
tuve el mismo problema, ¿cómo lo solucionaron? –