| Author |
display check box based on the value
|
johny sil
Greenhorn
Joined: Jul 11, 2006
Posts: 13
|
|
Hi, I want to display checkboxes based on the value come from the database, If the value is "true" checkbox is displayed as checked. Plaese send sample code, Thanks in advance
|
 |
Merrill Higginson
Ranch Hand
Joined: Feb 15, 2005
Posts: 4864
|
|
If you use the <html:checkbox> tag, Struts automatically checks or unchecks the box based on the value of the property you specify. So, if you write: <html:checkbox property="insured" value="true" /> Struts will assume you have a boolean property "insured" in your ActionForm bean, and if it's true will show the box as checked, and if it's false, will show the box as unchecked. [ July 21, 2006: Message edited by: Merrill Higginson ]
|
Merrill
Consultant, Sima Solutions
|
 |
 |
|
|
subject: display check box based on the value
|
|
|