Re: nested tags in velocity

2008-04-29 Thread Musachy Barroso
No, that's not good :) thanks Antonio musachy On Tue, Apr 29, 2008 at 4:00 AM, Antonio Petrelli <[EMAIL PROTECTED]> wrote: > 2008/4/29 Musachy Barroso <[EMAIL PROTECTED]>: > > > Does anyone know how to use nested tags in velocity, like building a > > url? I have tried many, many combinations o

Re: nested tags in velocity

2008-04-29 Thread Antonio Petrelli
2008/4/29 Musachy Barroso <[EMAIL PROTECTED]>: > Does anyone know how to use nested tags in velocity, like building a > url? I have tried many, many combinations of the form: > > #surl ... > #sparam ... #end > #end > > and can't seem to get it right. (and google is no giving me any love > o

Re: Nested tags confusion

2007-02-21 Thread Nuwan Chandrasoma
hi, try remvoing the 'name' attribute from the nested text tasg. eg: Regards, Nuwan. - Original Message - From: "David Miller" <[EMAIL PROTECTED]> To: Sent: Wednesday, February 21, 2007 11:39 PM Subject: Nested tags confusion Greetings. I'm having extreme difficulty getting my

Re: Nested Tags

2006-01-31 Thread Hubert Rabago
On 1/31/06, rama chandrula <[EMAIL PROTECTED]> wrote: > I have a list of objects, and each object inturn has a list of another > object. I want to represent all these objects and the properties of the > inner object in the UI like > > outer[i].inner[j].propertyValue > > How can I use nested tags to

Re: nested tags problem

2005-10-26 Thread Lucas Bern
Hi may be the scope request is not enough? why are you instantiating the ActionForm?, it is supposed to have struts doing it for you, any special reason? Lucas Koen Jans <[EMAIL PROTECTED]> escribió: Hi, i am trying to access nested properties on a jsp page like this: On my ActionForm

RE: nested tags

2005-03-10 Thread wo_shi_ni_ba_ba
So basically there is no way that I can construct a struts tag(or jsp tag in general) on the fly and render it fully? thanks --- "Fogleson, Allen" <[EMAIL PROTECTED]> wrote: > Nope, > > Part of the problem here is that the struts tag > is > rendered as > > The other part is that you would

Re: nested tags

2005-03-10 Thread wo_shi_ni_ba_ba
I am using it in a tile, it's mainly for reusability and efficiency. I created a jsp template that takes some tile parameters and fill them in and tries to create form elements on the fly. But i guess it wont' work --- Wendy Smoak <[EMAIL PROTECTED]> wrote: > From: "wo_shi_ni_ba_ba" <[EMAI

Re: nested tags

2005-03-10 Thread Wendy Smoak
From: "wo_shi_ni_ba_ba" <[EMAIL PROTECTED]> > I want to have tags like the following: > property=""/> That's a new one... When you're writing a JSP, in what situation would you NOT know what kind of form element you want to display for a particular form property? -- Wendy Smoak

RE: nested tags

2005-03-10 Thread Fogleson, Allen
Nope, Part of the problem here is that the struts tag is rendered as The other part is that you would have to write some kind of preprocessor for the page that basically acts as a web container to process your tags, then pass the preprocessed page to the jsp compiler. Its not "un-doable" but

Re: Nested tags

2004-10-12 Thread Claus M. Christiansen
just use whatever id you are using for the indexId of the outer nested iterate. if you are using the nested EL tags or JSP2.0 you then have easy access to display the value of any indexId ... use either if JSTL or if JSP2.0 just ${fooIndex} The problem is not so much that I want to dis

Re: Nested tags

2004-10-12 Thread Rick Reumann
Claus M. Christiansen wrote the following on 10/12/2004 3:13 PM: Now.. The problem lies in the nested iterate tag. The "indexed=true" takes the value from the iterate tag in which it is nested, but what I really need is the one from the outer tag, which is called subQuestion. The reason I need t

Re: Nested tags...

2004-08-13 Thread Jitender K Chukkavenkata
Where did you terminate tag. Close the Jitender Kumar C.V.

RE: Nested tags...

2004-08-13 Thread Kataria, Satish
I am not sure but just a guesss You are not closing the html:form tag and a html:form can't be embeded within another Just closing the tags should solve the problem. Thanks, Satish -Original Message- From: sridhar ramalingam [mailto:[EMAIL PROTECTED] Sent: Friday, August 13, 2004 1:00 PM

Re: nested tags and bean population

2004-07-19 Thread Juan Alvarado
Hey Rick I got rid of the name and type and it worked. Kinda weird. Thanks for the quick reply!!! Later... Rick Reumann <[EMAIL PROTECTED]> wrote: Juan Alvarado wrote: > In my form bean I have an array list called categories that contains > objects of type Category. Each Category object conta

Re: nested tags and bean population

2004-07-19 Thread Rick Reumann
Juan Alvarado wrote: In my form bean I have an array list called categories that contains objects of type Category. Each Category object contains an array list of Steps. So in my jsp I am rendering this relation as follows: property='categories' id='cat' type='com.securance.vo.ApStepCategoryVO'>