Re: Can you set parameters in using in the tag body?

2008-05-08 Thread Steve Akins
Are these parameters static? If they are you could set them up in struts config and get the submit button to direct to a specific action mapping with these parameters defined. Cheers, Steve On Thu, May 8, 2008 at 9:24 PM, Jeromy Evans <[EMAIL PROTECTED]> wrote: > Eduardo Dela Rosa wrote: > > Hi

Re: Passing a List through a hidden field

2008-04-23 Thread Steve Akins
AIL PROTECTED]> wrote: > > Steve Akins wrote: > > > I have a List called "ids" which contains 4 Strings "22030", "6496", > > "6457", "6448" > > > > When the following tag is used: > > > > > >

Passing a List through a hidden field

2008-04-22 Thread Steve Akins
I have a List called "ids" which contains 4 Strings "22030", "6496", "6457", "6448" When the following tag is used: It produces the following HTML: When the form is submitted the "ids" List is populated with one String "[22030, 6496, 6457, 6448]" instead of 4 Strings "22030", "6496", "6457",

Re: Why do parameters get applied to all hyperlinks generated by & even after the request is processes?

2008-04-22 Thread Steve Akins
You need to code includeParams="none" in the s:url tags or ... ... in your configuration. Have a look here: http://struts.apache.org/2.x/docs/url.html I'm pretty certain that will sort you out. On 4/23/08, Eduardo Dela Rosa <[EMAIL PROTECTED]> wrote: > Hi, > > I have the following

S2 Textfield tag date formatting

2008-04-09 Thread Steve Akins
I'm trying to use a textfield tag for date input. I need to format this in the form dd/MM/ HH:mm:ss The teaxtfield tag formats the date to a Locale based format DateFormat.SHORT via XWorkBasicConverter. For my locale this turns out to be dd/MM/yy. This is not the format I want. DateTimeP