s:radio

2008-11-21 Thread srinivasa_v .
Hi All, Is there any way to customise or our own lable in

s:radio

2008-11-22 Thread srinivasa_v .
Hi All, Is there any way to customise or our own lable in

RE: s:radio

2008-11-22 Thread Martin Gainty
530 > From: [EMAIL PROTECTED] > To: user@struts.apache.org > Subject: s:radio > > Hi All, > Is there any way to customise or our own lable in > http://windowslive.com/Explore/Hotmail?ocid=TXT_TAGLM_WL_hotmail_acq_safety_112008

Re: s:radio

2008-11-22 Thread srinivasa_v .
> > > > Date: Sat, 22 Nov 2008 13:32:52 +0530 > > From: [EMAIL PROTECTED] > > To: user@struts.apache.org > > Subject: s:radio > > > > Hi All, > > Is there any way to customise or our own lable in > > name="yesornoList/> > > when I use in

s:radio on multiple lines

2009-01-24 Thread Daniel Ruan
Hi There, I'd like to create a group of radio buttons, one on each line, because the label is lengthy. By default, s:radio puts all radios on one single line. How do I change that? Thanks, Daniel

s:radio Tag - Buttongroup Support?

2008-10-13 Thread Torsten Krah
Hi. I've got a table where every line needs to be a new button group (using custom template to remove label and add ). But there is no attribute a s:radio to specify the group which should be used. How does struts2 support radio button groups? smime.p7s Description: S/MIME cryptogr

Problem with s:radio Struts2

2014-06-27 Thread Amine BADID
Hi All Here is the code is mypage.jsp: I've this error when I call an action: juin 27, 2014 4:53:34 PM org.apache.catalina.core.StandardWrapperValve invoke GRAVE: Servlet.service() for servlet [jsp] in context with path [/myApplicationName] threw exception [tag 'radio', field 'list': The req

Re: s:radio on multiple lines

2009-01-24 Thread Lukasz Lenart
2009/1/24 Daniel Ruan : > I'd like to create a group of radio buttons, one on each line, because the > label is lengthy. By default, s:radio puts all radios on one single line. > How do I change that? Use them=simple instead of xhtml Regards -- Lukasz http://www

Re: s:radio on multiple lines

2009-01-24 Thread Daniel Ruan
The simple theme does not work for me... My entire app uses the simple theme (). I also tried theme="simple" at the s:radio level but to no avail. Thanks, Daniel On Sat, Jan 24, 2009 at 3:00 PM, Lukasz Lenart wrote: > 2009/1/24 Daniel Ruan : > > I'd like to create

Re: s:radio on multiple lines

2009-01-24 Thread Lukasz Lenart
2009/1/24 Daniel Ruan : > The simple theme does not work for me... My entire app uses the simple theme > (). I also tried > theme="simple" at the s:radio level but to no avail. So then, put tag after each. Regards -- Lukasz http:

Re: s:radio on multiple lines

2009-01-24 Thread Daniel Ruan
e... My entire app uses the simple > theme > > (). I also tried > > theme="simple" at the s:radio level but to no avail. > > So then, put tag after each. > > > Regards > -- > Lukasz > http://www.lenart.org.pl/ > >

Re: s:radio on multiple lines

2009-01-25 Thread Lukasz Lenart
2009/1/25 Daniel Ruan : > > > Maybe simpler will be to modify original template files? Or use CSS to arrange tags in column? Regards -- Lukasz http://www.lenart.org.pl/ PS. I wasn't aware that radio tag is using list to render it self ;-( --

Re: s:radio Tag - Buttongroup Support?

2008-10-13 Thread Dave Newton
--- On Mon, 10/13/08, Torsten Krah wrote: > How does struts2 support radio button groups? The "name" attribute? Dave - To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

disable single option in s:radio

2009-11-17 Thread Stephan Eimer
I googled a lot around but couldn't find the answer to the question: how to disable a single option / choice in a s:radio tag? It should look like this: - option 1 - option 2 (should be disabled) - option 3 The list of options comes from an enum and is displayed correct. The standard s:

S:radio onchange call an action

2010-04-13 Thread hisameer
Hi, I am having radio buttons in my jsp page with three selections: (o) Login (o) Returning user (*) Register Register is selected default. But if the user selects Login or Returning User I want to call an action on the onchange event which has to do some business logic and redirect the page to

Re: Problem with s:radio Struts2

2014-06-27 Thread Dave Newton
On Fri, Jun 27, 2014 at 3:39 PM, Amine BADID wrote: > listRoles Do you have an action method returning `listRoles`, e.g., `getListRoles`? -- e: davelnew...@gmail.com m: 908-380-8699 s: davelnewton_skype t: @dave_newton b: Bucky Bits

Re: Problem with s:radio Struts2

2014-06-28 Thread Amine BADID
Hi Dave. Yes, I have. I've found the error. The welcome page was index.jsp, so I've changed it in web.xml : login.jsp and I've not this problem now. May this solution help other peoples. Thank you for all. Amine Le Samedi 28 juin 2014 1h28, Dave Newton a écrit : On Fri, Jun 27, 2014 at 3:39

Re: S:radio onchange call an action

2010-04-13 Thread Kusuma Haranath Atmakuri
1:21:38 PM Subject: S:radio onchange call an action Hi, I am having radio buttons in my jsp page with three selections: (o) Login (o) Returning user (*) Register Register is selected default. But if the user selects Login or Returning User I want to call an action on the onchange event which has

Re: S:radio onchange call an action

2010-04-15 Thread hisameer
nName; > testForm.submit(); > } > > > > > From: hisameer > To: user@struts.apache.org > Sent: Tue, April 13, 2010 1:21:38 PM > Subject: S:radio onchange call an action > > > Hi, > > I am having radio buttons in my jsp page with three selections: >

s:radio and s:checkboxlist - how to customize listValue property.

2009-03-11 Thread boraldo
When I use that 2 components in my form I need to set attributes listValue and listKey. That attributes as I understand require a field of a bean that is a member of collection represented by list attribute. Example: That means: 1) there will be one radiobutton for each element of collect

How to manage s:radio or s:select in s:iterator (Struts2)

2009-03-06 Thread Degoutin Jean-Philippe
My problem is as follow : I iterate over a map of objects and theses objects contains a property that I want to expose in a s:radio. Like this : I got a map "myMap" with 2 properties : - P1, the unique identifier of the object (P1 is also the key value o

How to manage s:radio or s:select in s:iterator (Struts2)

2009-03-06 Thread Degoutin Jean-Philippe
My problem is as follow : I iterate over a map of objects and theses objects contains a property that I want to expose in a s:radio. Like this : I got a map "myMap" with 2 properties : - P1, the unique identifier of the object (P1 is also the key value o

Re: s:radio and s:checkboxlist - how to customize listValue property.

2009-03-11 Thread Jim Kiley
The easiest (I'm not going to say "best") solution is to make a "fake" getter on your bean. Make a "getListLabel()" method that composes a String from the values that you want to display in the list label, and then set the listValue to be "listLabel". This is the way I've done this in the past an

Re: s:radio and s:checkboxlist - how to customize listValue property.

2009-03-11 Thread boraldo
>> It isn't ideal if you want to keep your model carefully isolated from your UI Unfortunately it is the case, so I need another solution. Jim Kiley wrote: > > The easiest (I'm not going to say "best") solution is to make a "fake" > getter on your bean. Make a "getListLabel()" method that com

Bug Fix: s:radio does not select the right option (any option)

2011-02-07 Thread John Dondapati
Hello, If you are breaking your head like me to see why the appropriate radio button is not selected, this might help you. FYI, I am using the simple theme. My s:radio tag : Note: answers is a HashMap 1. Create a new theme. Read more here<h

Re: Bug Fix: s:radio does not select the right option (any option)

2011-02-08 Thread John Dondapati
> button is not selected, this might help you. FYI, I am using the simple > theme. > > My s:radio tag : > name="answers[%{#question.id}]" > list="options" listKey="questionOptionId" > listV