RE: Dynamic text

2011-05-31 Thread Jason Pyeron
> -Original Message- > From: Martin Gainty > Sent: Tuesday, May 31, 2011 15:50 > To: Struts Users Mailing List > Subject: RE: Dynamic text > > > > > http://www.laliluna.de/articles/struts-message-resources-tutorial.html His issue was not on where a

RE: Dynamic text

2011-05-31 Thread Martin Gainty
e les email peuvent facilement être sujets à la manipulation, nous ne pouvons accepter aucune responsabilité pour le contenu fourni. > Date: Tue, 31 May 2011 19:40:43 +0100 > From: mar...@marcusbond.me.uk > To: user@struts.apache.org > Subject: Re: Dynamic text > > Thanks f

Re: Dynamic text

2011-05-31 Thread Marcus Bond
1 14:41 To: Struts Users Mailing List Subject: Re: Dynamic text Thanks for the link but still not quite what I'm looking for.. I've made a simple example below, however note that I am not extending ActionSupport in any of my actions: Action has method (could return different value tha

RE: Dynamic text

2011-05-31 Thread Jason Pyeron
to:mar...@marcusbond.me.uk] > Sent: Tuesday, May 31, 2011 14:41 > To: Struts Users Mailing List > Subject: Re: Dynamic text > > Thanks for the link but still not quite what I'm looking > for.. I've made a simple example below, however note that I > am not extendi

Re: Dynamic text

2011-05-31 Thread Marcus Bond
cus Bond Sent: Tuesday, May 31, 2011 10:26 To: Struts Users Mailing List Subject: Dynamic text Hi, I want to use some view objects in my action that will contain resource keys and then show these using s:text to resolve the key to it's translation.. Is this type of thing supported? I know a lot

RE: Dynamic text

2011-05-31 Thread Jason Pyeron
> -Original Message- > From: Marcus Bond > Sent: Tuesday, May 31, 2011 10:26 > To: Struts Users Mailing List > Subject: Dynamic text > > Hi, > > I want to use some view objects in my action that will > contain resource keys and then show these using s:text

Dynamic text

2011-05-31 Thread Marcus Bond
Hi, I want to use some view objects in my action that will contain resource keys and then show these using s:text to resolve the key to it's translation.. Is this type of thing supported? I know a lot of tags moan if you try and use any ${foo.bar} type arguments Cheers, Marcus

Re: [S2] Dynamic Text Tag Attributes

2008-09-11 Thread Dave Newton
--- On Thu, 9/11/08, Roger wrote: > I've got some .jsp pages that are identical apart from > the page title that I'm currently setting with > > and > > etc etc. > > Is there a work around? You could try a normal OGNL expression, but I don't recall if the text tag will evaluate the "name" attr

Re: [S2] Dynamic Text Tag Attributes

2008-09-11 Thread Paweł Wielgus
Hi, or try this: Best greetings, Paweł Wielgus. 2008/9/11 Roger <[EMAIL PROTECTED]>: > I've got some .jsp pages that are identical apart from the page title that I'm > currently setting with "" > and "" etc etc. > > I would like to set the name attribute dynamically from the supporting action, >

Re: [S2] Dynamic Text Tag Attributes

2008-09-11 Thread David Harland
I think you want something like label.page2.title=Title {0} --- On Thu, 9/11/08, Roger <[EMAIL PROTECTED]> wrote: > From: Roger <[EMAIL PROTECTED]> > Subject: [S2] Dynamic Text Tag Attributes > To: "Struts Users Mailing List" > Date: Thursday, September

[S2] Dynamic Text Tag Attributes

2008-09-11 Thread Roger
I've got some .jsp pages that are identical apart from the page title that I'm currently setting with "" and "" etc etc. I would like to set the name attribute dynamically from the supporting action, but "name="${title}"/> obviously doesn't work as the attribute name won't take an expression.

dynamic text fields in jsp

2007-07-12 Thread Viplav Kallepu
Hi All, I am new to struts and I am using struts 1.3.8. I am using a bean class for every table in oracle as a Data Transfer Object and a actionform for every jsp. Now my problem is I have to do data type conversion from my actionform to DTO and DTO to actionform, for example I have date in my j

Re: Help needed - submitting dynamic text boxes to ActionForm

2004-12-27 Thread Jeff Beal
Use indexed properties. There's a lot of information on indexed properties in the Struts documentation and in the archives of this mailing list, so I won't go into detail here. The basic idea of an indexed property is that your getters and setters have an extra (int) parameter that is the ind

Help needed - submitting dynamic text boxes to ActionForm

2004-12-23 Thread krishna mohan d
Hi, I am struck in the middle of one web application. I am using struts 1.1 framework. I have a form where I have nearly 12 text boxes per row, which are generated dynamically. means I have a form where I have 12 text boxes per row and I am assigning name dynamically.[I am using plain jsp and

Re: Problem with Dynamic text boxes

2004-06-01 Thread Rick Reumann
[EMAIL PROTECTED] wrote: i have to display a screen in which the no of rows are dynamic. in each row there are 2 text boxes where user can enter values. after entering the values in the text boxes user press 'SAVE' button . in the Action form i have to validate the values in the validate()

Re: Problem with Dynamic text boxes

2004-06-01 Thread David Erickson
You might also want to use indexed properties. Look into the indexed=true flag on the html taglibs. -David - Original Message - From: "sean jones" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Tuesday, June 01, 2004 8:29 AM Subject: Re: Problem with Dynamic t

Re: Problem with Dynamic text boxes

2004-06-01 Thread sean jones
tcs.com> writes: > > > hiÂi have to display a screen in > which the no of rows are dynamic. in each row there are 2 text boxes where > user can enter values.Âafter entering the values in the > text boxes user press 'SAVE' Âbutton . Âin the Action form Âi > have to validate the values in the va

Problem with Dynamic text boxes

2004-06-01 Thread biswajit . basak
hi  i have to display a screen in which the no of rows are dynamic. in each row there are 2 text boxes where user can enter values.  after entering the values in the text boxes user press 'SAVE'  button .  in the Action form  i have to validate the values in the validate() method . also in the Ac