Home Spring Spring3.2 The radiobutton tag



The radiobutton tag
Posted on: March 22, 2013 at 12:00 AM
In this section, you will learn about radiobutton tag of Spring form tag library.

The radiobutton tag

In this section, you will learn about radiobutton tag of Spring form tag library.

A radio button is a type of graphical user interface element that allows the user to choose only one of a predefined set of options.

The radiobutton tag of Spring form tag library renders an HTML 'input' tag with type 'radio'.

Given below sample code for declaring radio button using radiobutton tag of Spring form tag library :

<form:form>
	<table>
		<tr>
			<td>Sex:</td>
			<td>Male: <form:radiobutton path="sex" value="M"/> <br/>
			Female: <form:radiobutton path="sex" value="F"/> </td>
		</tr>
	</table>
</form:form>

In the above code, you can see the path name is same while values passed are different i.e. M & F.

Related Tags for The radiobutton tag:


More Tutorials from this section

Ask Questions?    Discuss: The radiobutton tag  

Post your Comment


Your Name (*) :
Your Email :
Subject (*):
Your Comment (*):
  Reload Image
 
 

Ask Questions?

If you are facing any programming issue, such as compilation errors or not able to find the code you are looking for.

Ask your questions, our development team will try to give answers to your questions.