Dear friends,
do you have any example for creation of tree from the server side.
I mean - whenever I click the node of tree, it will go to server and get the expended / colapsed tree.
I had seen many trees availble for the client side using the javascript but I need serverside only.
I will be thankfull for your kind help.
Prakash Dewangan
-
Server side Tree (8 messages)
- Posted by: prakash dewangan
- Posted on: October 18 2002 06:12 EDT
Threaded Messages (8)
- Server side Tree by davout davout on October 18 2002 18:10 EDT
- Server side Tree by prakash dewangan on October 19 2002 00:08 EDT
-
Server side Tree by davout davout on October 19 2002 04:28 EDT
-
Server side Tree by prakash dewangan on October 19 2002 10:12 EDT
-
Server side Tree by Borislav Iordanov on October 19 2002 12:13 EDT
- Server side Tree by davout davout on October 19 2002 01:20 EDT
- Server side Tree by prakash dewangan on October 21 2002 01:22 EDT
-
Server side Tree by Borislav Iordanov on October 19 2002 12:13 EDT
-
Server side Tree by prakash dewangan on October 19 2002 10:12 EDT
-
Server side Tree by davout davout on October 19 2002 04:28 EDT
- Server side Tree by prakash dewangan on October 19 2002 00:08 EDT
- LGPL Treeview taglib by Alan Broady on August 20 2004 10:01 EDT
-
Server side Tree[ Go to top ]
- Posted by: davout davout
- Posted on: October 18 2002 18:10 EDT
- in response to prakash dewangan
-
Server side Tree[ Go to top ]
- Posted by: prakash dewangan
- Posted on: October 19 2002 00:08 EDT
- in response to davout davout
Hi Davout,
I tried but is it population the full tree at the server, and once it reaches to the client, it executes the client code (javascript) to expand and colapse the tree....
I need the code that expend and colapse logic is also in the server side only....
Example
rediffmail.com is having at left top for my contact list..
here you can easilly see that even for expand or colapse it goes to server....
thanks
Prakash
-
Server side Tree[ Go to top ]
- Posted by: davout davout
- Posted on: October 19 2002 04:28 EDT
- in response to prakash dewangan
Are you sure about that?
Wheh I ran their demo page the page refreshed each time a node was expanded -
Server side Tree[ Go to top ]
- Posted by: prakash dewangan
- Posted on: October 19 2002 10:12 EDT
- in response to davout davout
I think I am looking some different Example in the same site
the
Url is
http://www.kobrix.com/ticl/ticlmain.jsp?ticlstate=ph1~;p6~vsb~show;p2~vsb~show;p1~vsb~show&ticlcmd=panel~p2~hide
am I looking right place??
Prakash -
Server side Tree[ Go to top ]
- Posted by: Borislav Iordanov
- Posted on: October 19 2002 12:13 EDT
- in response to prakash dewangan
Prakash,
You are not looking at the right place really ;)
The TreeView component of TICL can be BOTH server-side and client-side: you decide. If you put:
<t:treeView manageOn="server" ...>
there will be a refresh on each node expand/collapse end-user action. If you put
<t:treeView manageOn="client" ...>
all tree data is loaded at the client and expand/collpase happens there.
Tree node/leaf selection is treated independantly of expand/collapse. That means that you can hook a JavaScript function to a "select" or you can have the component trigger a server-side event with a refresh, regardless of where the expand/collapse happens.
Hence the 3 TreeView examples on the TICL "Examples" page:
http://www.kobrix.com/ticl/examples/index.jsp
one show client-side TreeView, the other server-side and the 3d node selection (with both client and server triggered events).
Cheers,
Boris -
Server side Tree[ Go to top ]
- Posted by: davout davout
- Posted on: October 19 2002 13:20 EDT
- in response to Borislav Iordanov
Out of interest what do they charge for TICL?? I can't find a price anywhere on their site -
Server side Tree[ Go to top ]
- Posted by: prakash dewangan
- Posted on: October 21 2002 01:22 EDT
- in response to Borislav Iordanov
Hi Boris,
Thank you... now I got it.
Prakash
-
LGPL Treeview taglib[ Go to top ]
- Posted by: Alan Broady
- Posted on: August 20 2004 10:01 EDT
- in response to prakash dewangan
This one worked for me, you should be able to combine it with a framework such as Struts without too many problems - source is available, license is LGPL. I tried four or five other components before selecting it.
http://www.jenkov.dk/projects/treetag/treetag.jsp
Alan