RE: Problem with tag

2010-01-20 Thread Srikanth
the sender immediately by return e-mail and securely discard this message. -Original Message- From: VSGoud [mailto:srikanthgou...@yahoo.co.in] Sent: Monday, January 18, 2010 7:16 PM To: user@struts.apache.org Subject: Re: Problem with tag Hi, Using tag it is working. thanks

Re: Problem with tag

2010-01-18 Thread VSGoud
Hi, Using tag it is working. thanks. Srikanth Nils-Helge Garli wrote: > > Putting it inside tag might also work. > > Nils-H > > On Mon, Jan 18, 2010 at 2:12 PM, Dave Newton > wrote: >> VSGoud wrote: >>> >>> Facing problem with tag. >>> when i fetch the data from one of the columns

Re: Problem with tag

2010-01-18 Thread Nils-Helge Garli Hegvik
Putting it inside tag might also work. Nils-H On Mon, Jan 18, 2010 at 2:12 PM, Dave Newton wrote: > VSGoud wrote: >> >> Facing problem with tag. >> when i fetch the data from one of the columns in a given table, I am able >> to >> view the certain parts of the fetched data in new lines in >>

Re: Problem with tag

2010-01-18 Thread Dave Newton
VSGoud wrote: Facing problem with tag. when i fetch the data from one of the columns in a given table, I am able to view the certain parts of the fetched data in new lines in tag. But, when i tried to view the same fetched data through tag, the text isn't appearing in new lines. On viewing th

Re: Problem with tag

2009-11-14 Thread Musachy Barroso
just ignore him, he is a resident troll. On Sat, Nov 14, 2009 at 6:07 PM, Burton Rhodes wrote: > I habe no idea what Martin just wrote means?! > > On 11/13/09, Martin Gainty wrote: >> >> //Assuming we have this Action >> //A Simple Action Class which demonstrates placing information in a Map >>

Re: Problem with tag

2009-11-14 Thread Burton Rhodes
der leichten Manipulierbarkeit von > E-Mails koennen wir keine Haftung fuer den Inhalt uebernehmen. > > > > > > >> Date: Sat, 14 Nov 2009 20:07:21 -0600 >> Subject: Re: Problem with tag >> From: burtonrho...@gmail.com >> To: user@struts.apache.org >>

RE: Problem with tag

2009-11-14 Thread Martin Gainty
ate: Sat, 14 Nov 2009 20:07:21 -0600 > Subject: Re: Problem with tag > From: burtonrho...@gmail.com > To: user@struts.apache.org > > I habe no idea what Martin just wrote means?! > > On 11/13/09, Martin Gainty wrote: > > > > //Assuming we have this Acti

Re: Problem with tag

2009-11-14 Thread Burton Rhodes
I habe no idea what Martin just wrote means?! On 11/13/09, Martin Gainty wrote: > > //Assuming we have this Action > //A Simple Action Class which demonstrates placing information in a Map > public class GetEntryAction extends ActionSupport > { > private ArrayList stats_list=new ArrayList(30)

Re: Problem with tag

2009-11-14 Thread Burton Rhodes
do you wants to this? On 11/13/09, Oscar wrote: > Brian Thompson escribió: >> Try this: >> >> >> >> >> >> Calling without specifying a value will default to the top of >> the value stack which ought to be the current element in the list because >> you're inside the tag. >> >> -Brian

RE: Problem with tag

2009-11-13 Thread Martin Gainty
//Assuming we have this Action //A Simple Action Class which demonstrates placing information in a Map public class GetEntryAction extends ActionSupport { private ArrayList stats_list=new ArrayList(30); //a collection of stats private class stats { private ArrayList entries_list=

Re: Problem with tag

2009-11-13 Thread Oscar
Brian Thompson escribió: Try this: Calling without specifying a value will default to the top of the value stack which ought to be the current element in the list because you're inside the tag. -Brian On Fri, Nov 13, 2009 at 12:53 PM, Oscar wrote: Hi to all, i have a simple que

Re: Problem with tag

2009-11-13 Thread Brian Thompson
Try this: Calling without specifying a value will default to the top of the value stack which ought to be the current element in the list because you're inside the tag. -Brian On Fri, Nov 13, 2009 at 12:53 PM, Oscar wrote: > Hi to all, i have a simple question about tag. Let's say t

Re: Problem with tag

2007-05-05 Thread Laurie Harper
Felipe Rodrigues wrote: Hi Laurie, From your example I can see that the best way is to use the OGNL instead of EL in Struts tags. But, will OGNL work exactly as EL to get values from session, pageContext, request and application? I thought OGNL was only for Struts stack. I didn't realize that I

Re: Problem with tag

2007-05-04 Thread Felipe Rodrigues
Hi Laurie, >From your example I can see that the best way is to use the OGNL instead of EL in Struts tags. But, will OGNL work exactly as EL to get values from session, pageContext, request and application? I thought OGNL was only for Struts stack. I didn't realize that I could use it as alternat

Re: Problem with tag

2007-05-04 Thread Laurie Harper
Well, as I said, the 'value' attribute is evaluated by OGNL, so what's going to happen here is: 1. the container will evaluate the EL expression ${mapItem.value.id} 2. the result of 1. (e.g. int '99') will be passed into the custom action 3. Struts will attempt to evaluate the value '99' as a

Re: Problem with tag

2007-05-03 Thread Felipe Rodrigues
I'm sorry, but I'm away from my code, so I'll try to reproduce here. The code is pretty simple. -- END OF CODE The JSP: MyLink = The Action

Re: Problem with tag

2007-05-03 Thread Laurie Harper
Felipe Rodrigues wrote: Hi guys, Sometimes when I use Does anybody heard anything about that? I've looked at the source code of param tag in the Struts source code, and there is a findValue(String expr) that calls ValueStack.findValue(String expr) as well. What exactly is that expr (to me seem