Thanks guys -- 

Actually, I needed a Q&D tree on a JSP page and it worked great.  The one
issue I am having though is this.  I am creating the tree by attaching
TreeItem nodes.  I am populating these nodes with attributes 


                                Goal goal = goals.next();
                                TreeItem item = new TreeItem(goal.getTitle(), 
goal.getTitle(),
                                                false);
                                item.setAttributes("nodeType", "goal");
                                item.setCollapsed(false);
                                treeBuilder.add(item);

but cannot figure out how to get them passed back to the server as
parameters.

<ajax:htmlContent target="clicker" sourceClass="nodeClass"
        baseUrl="${doGoalTree}"
parameters="node={ajaxParameter},action=info"></ajax:htmlContent>

Any clues?

P.S. I was surprised to see that you had worked on this project Musachy. 
You just pop up everywhere!

Peace,
Scott


Musachy Barroso wrote:
> 
> They should work ok, but I see no reason why you would like to use
> that instead of jquery or prototype directly, to be honest.
> 
> musachy
> 
> On Tue, Aug 18, 2009 at 10:21 AM, stanlick<stanl...@gmail.com> wrote:
>>
>> I am trying to leverage the http://ajaxtags.sourceforge.net/ AjaxTags and
>> would like to see if anyone here might have tips before tearing in.  I
>> realize this might not be the best venue for the question, but hey, It's
>> Struts 2 sort of.
>>
>> Peace,
>> Scott
>> --
>> View this message in context:
>> http://www.nabble.com/Anyone-using-the-Ajaxtags-with-Struts-2-tp25029536p25029536.html
>> Sent from the Struts - User mailing list archive at Nabble.com.
>>
>>
>> ---------------------------------------------------------------------
>> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
>> For additional commands, e-mail: user-h...@struts.apache.org
>>
>>
> 
> 
> 
> -- 
> "Hey you! Would you help me to carry the stone?" Pink Floyd
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
> For additional commands, e-mail: user-h...@struts.apache.org
> 
> 
> 

-- 
View this message in context: 
http://www.nabble.com/Anyone-using-the-Ajaxtags-with-Struts-2-tp25029536p25063918.html
Sent from the Struts - User mailing list archive at Nabble.com.


---------------------------------------------------------------------
To unsubscribe, e-mail: user-unsubscr...@struts.apache.org
For additional commands, e-mail: user-h...@struts.apache.org

Reply via email to