Hi All!
I have a requirement as follows.
i have a Text area(having multiple check boxes in it) in my
JSP ,i have to bind the selected check box value using spring bind and populate it.Please find by JSP code
<tr>
<td class="fieldFont" width="22%" valign="top">Super Users(E-mail)</td>
<td valign="top" width="30%">
<div class="divScrollStyle">
<table cellspacing="0" cellpadding="0" border="0" width="208px">
<tr>
<td class="whiteNoRightBor" width="15px"><input type="checkbox" id=""/></td>
<td class="fieldFont whiteNoLeftBor" align="left">User1@abc.com</td>
</tr>
<tr>
<td class="whiteNoRightBor" width="15px"><input type="checkbox" id=""/></td>
<td class="fieldFont whiteNoLeftBor" align="left">User2@abc.com</td>
</tr>
<tr>
<td class="whiteNoRightBor" width="15px"><input type="checkbox" id=""/></td>
<td class="fieldFont whiteNoLeftBor" align="left">User3@abc.com</td>
</tr>
</table>
</div>
</td>
<td width="23%"> </td>
<td width="25%"> </td>
</tr>
I have to replace the above code with Spring bind tag.
Can any please help me out to proceed further
Thanks