Hello
I use the component to modify a tree.
Here is my script
<script>
treeEntities=new dhtmlXTreeObject("treeboxbox_tree","100%","100%",0);
treeEntities.enableDragAndDrop(1);
treeEntities.setDragBehavior("complex");
treeEntities.enableItemEditor(1);
treeEntities.enableHighlighting(1);
treeEntities.enableKeySearch(1);
treeEntities.enableKeyboardNavigation(1);
treeEntities.loadXML("<% = Session("portalUrl") %>/ip-admin/includes/buidEntitiesXML.asp", function() {
treeEntities.loadOpenStates();});
treeEntities.setSkin('dhx_skyblue');
treeEntities.setImagePath("<% = Session("portalUrl") %>/js/dhtmlx/dhtmlxTree/codebase/imgs/csh_dhx_skyblue/");
myDataProcessor = new dataProcessor("<% = Session("portalUrl") %>/ip-admin/includes/entity_edit.asp");
myDataProcessor.init(treeEntities);
</script>
I succeded in calling the asp page which is supposed to save datas but I don’t understand how I get new text values when I updated the tree… I get only this string :
tr_id=6702&tr_pid=6517&tr_order=1&tr_text=Autres%20utilisateurs%20DRI%20(6702)&!nativeeditor_status=updated
The tr_text is the former value not the one I updated…
Hello
such a problem can occur if ids are not unique in a tree. Check that all ids are different.
Here is my xml…
Seems fine, I’ve got the same problem with your sample xml…
<?xml version='1.0' encoding='iso-8859-1'?>
<item text="BU CHP (7327)" id="7327"></item>
<item text="BU Gestion de l&rsquo;énergie (7328)" id="7328"></item>
<item text="Direction Juridique (7341)" id="7341">
<item text="Direction Ressources humaines (7342)" id="7342">
<item text="Direction Stratégie Développement Economie (6682)" id="6682"></item>
</item>
</item>
</item>
<item text="Direction de la Recherche et de l&rsquo;Innovation (GDF Suez) (6517)" id="6517">
<item text="Pilotes et Experts transverses DRI (7344)" id="7344"></item>
<item text="Plateforme Véhicule Electrique (7345)" id="7345"></item>
<item text="Plateforme Inovation énergie (7346)" id="7346"></item>
<item text="Pôle gestion de la connaissance (6695)" id="6695"></item>
<item text="Autres utilisateurs DRI (6702)" id="6702"></item>
</item>
<item text="SUEZ Environnement (7178)" id="7178"></item>
<item text="Branche Energie Services (7329)" id="7329"></item>
<item text="B3G (7330)" id="7330"></item>
<item text="BEEI (7331)" id="7331"></item>
<item text="DSDD (7334)" id="7334"></item>
</item>
<item text="Prestataires (6209)" id="6209">
<item text="INTELLECO (7006)" id="7006">
<item text="Direction Générale Intelleco (116)" id="116"></item>
<item text="Département Outils Intelleco (6268)" id="6268"></item>
<item text="Département Analyse et veille Intelleco (118)" id="118"></item>
<item text="Chargés d&rsquo;études (Intelleco) (7007)" id="7007"></item>
<item text="Département Développement (7002)" id="7002"></item>
</item>
<item text="Observatoire pour l&rsquo;Innovation dans l&rsquo;Energie (6927)" id="6927"></item>
</item>
<item text="Entités inactives (6715)" id="6715">
<item text="Erma Electronique (6568)" id="6568"></item>
<item text="12Troie Consulting (7009)" id="7009">
<item text="Staff 12Troie Consulting (6266)" id="6266"></item>
</item>
</item>
Have a look at the sample:
dhtmlx.com/docs/products/dht … _data.html
What should be done here to recreate the issue ?
I think that was because of my xml response to js script that was not correct… I fixed it and it seems to be fine now…
I keep you posted.