Hi,
we’ve search for nearly some hours, but we can’t find a solution for our problem.
We included the script like:
<link rel="STYLESHEET" type="text/css" href="/typo3conf/ext/test/Resources/Public/Js/Tree/dhtmlxtree.css">
<script src="/typo3conf/ext/test/Resources/Public/Js/Tree/dhtmlxcommon.js"></script>
<script src="/typo3conf/ext/test/Resources/Public/Js/Tree/dhtmlxtree.js"></script>
<script src="/typo3conf/ext/test/Resources/Public/Js/Tree/ext/dhtmlxtree_ed.js"></script>
<script src="/typo3conf/ext/test/Resources/Public/Js/Tree/ext/dhtmlxdataprocessor.js" type="text/javascript"></script>
<table>
<tr>
<td>
<div id="treeboxbox_tree" style="width:250px; height:218px;background-color:#f5f5f5;border :1px solid Silver;; overflow:auto;"></div>
</td>
</tr>
</table>
<script>
tree = new dhtmlXTreeObject("treeboxbox_tree", "100%", "100%", 0);
tree.setSkin('dhx_skyblue');
tree.setImagePath("path/");
tree.enableDragAndDrop(true);
tree.enableItemEditor(true);
tree.loadXML("script.php");
myDataProcessor = new dataProcessor("script.php");
myDataProcessor.init(tree);
</script>
It doesn’t matter what we do on the server side (returning a XML or not) we can only do an action once a time. Changing a name or Adding a new item and after that the firebug don’t shows any further calls.
What’s wrong? Any ideas?