Re: Checked radio buttons

2001-07-06 Thread Jean-Noel Ribette

A radio button will be cheked if its value is equals to the value of the form property 
specified.

Jean-Noel

- Original Message -
From: Guus Holshuijsen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 06, 2001 10:28 AM
Subject: Checked radio buttons


I'm trying to find out if it is possible to set a radiobutton to checked using the 
HTML tag library. The documentation
does not describe it.

Regards,
Guus

Guus Holshuijsen, Videtur
Horsten 1, unit 1.18
5612 AX Eindhoven
The Netherlands
T:+31-40-2450214  F:+31-40-2939343  M:+31-6-25077204





RE: Checked radio buttons

2001-07-06 Thread Dudley [EMAIL PROTECTED]

can anyone supply a  good radio buttons example? preferably with more than 1
button..pLEASE!!

-Original Message-
From: Jean-Noel Ribette [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 06, 2001 11:10 AM
To: [EMAIL PROTECTED]
Subject: Re: Checked radio buttons


A radio button will be cheked if its value is equals to the value of the
form property specified.

Jean-Noel

- Original Message -
From: Guus Holshuijsen [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Friday, July 06, 2001 10:28 AM
Subject: Checked radio buttons


I'm trying to find out if it is possible to set a radiobutton to checked
using the HTML tag library. The documentation
does not describe it.

Regards,
Guus

Guus Holshuijsen, Videtur
Horsten 1, unit 1.18
5612 AX Eindhoven
The Netherlands
T:+31-40-2450214  F:+31-40-2939343  M:+31-6-25077204




RE: Checked radio buttons

2001-07-06 Thread flare

 can anyone supply a  good radio buttons example? preferably with more
 than 1 button..pLEASE!!
 
that's what I'm using

tr
 th align=right
 bean:message key=prompt.newsletter/
 /th
  td align=left colspan=5
  html:radio property=newsletter value=si /si
  html:radio property=newsletter value=no /no
  /td
/tr

inside the actionform just put

public class GenericForm extends ActionForm
{
protected String newsletter=si;
 
public void setNewsletter(String newsletter) 
{
...


and your radiobutton will be checked 

 Fla'




RE: Checked radio buttons

2001-07-06 Thread Dudley [EMAIL PROTECTED]

thanx, appreciate the help

-Original Message-
From: flare [mailto:[EMAIL PROTECTED]]
Sent: Friday, July 06, 2001 2:12 PM
To: [EMAIL PROTECTED]
Subject: RE: Checked radio buttons


 can anyone supply a  good radio buttons example? preferably with more
 than 1 button..pLEASE!!
 
that's what I'm using

tr
 th align=right
 bean:message key=prompt.newsletter/
 /th
  td align=left colspan=5
  html:radio property=newsletter value=si /si
  html:radio property=newsletter value=no /no
  /td
/tr

inside the actionform just put

public class GenericForm extends ActionForm
{
protected String newsletter=si;
 
public void setNewsletter(String newsletter) 
{
...


and your radiobutton will be checked 

 Fla'