I have created a tree panel
in the Viewport
and also placed a toolbar
with some menu items
in the north region of Viewport
.
This is how it works:
- I select File -> Open, then I get an i.e. an XML file
- Now this
"somefile.xml"
will dynamically be added to the tree
I want to do the following on treeChileNodeClick:
- Once I
dblclick
onsomefile.xml
, I want to be able to call aphp
file which does something with the xml file and returns the results - How can I run that
php
script? - How can I retrieve the returned values of that
php
script?
Thanks for any tip/solution.