ZK - Open Source Ajax Java FrameworkZK - Open Source Ajax Java Framework

Graphical Tree Layout

perfomance
9 Dec 2011 09:08:42 GMT
9 Dec 2011 09:08:42 GMT

Hi,
How can we gererate graphical tree like displayedin below link in ZK with all bowser compatible?If anyone have idea please share it...
http://www.codeproject.com/KB/scripting/graphic_javascript_tree.aspx

gcnew
27 Dec 2011 11:32:05 GMT
27 Dec 2011 11:32:05 GMT

This seems to me a very graphically complex tree. There is no component with this exact functionality. You can however include the JavaScript & styles that generate it in index.zul:

<style src="sourceToCss.css" ></style>
<?script src="sourceToScript.js" ?>

Then you should be able to control the tree with server side code using Clients.evalJavaScript

You may also be interested in this. Although specific to the Script component it may be used to see how to include native tags.

Best Regards,
gcnew