-----Original Message-----
From: Dudley Butt@i-Commerce [mailto:[EMAIL PROTECTED]]
Sent: Thursday, May 03, 2001 2:47 PM
To: [EMAIL PROTECTED]
Subject: very important please help guys....is it possible to update
prope rties of an object in an iteration?


pleeaaasssee help

What i have is this...

<html:form action="/eFilerAdd">
<center>        
....
.
.
.                       
                                
                                <tr>
                                        <th align="center" >
                                          <bean:message
key="eFiler.firstName"/>
                                        </th>
                                        <th align="center" >
                                          <bean:message
key="eFiler.initials"/>
                                        </th>
                                        <th align="center" >
                                          <bean:message
key="eFiler.lastName"/>
                                        </th>
                                        <th align="center" >
                                          <bean:message
key="eFiler.idNumber"/>
                                        </th>
                                        <th align="center" >
                                          <bean:message key="eFiler.state"/>
                                        </th>

                                        <th align="center" >
                                          &nbsp;
                                        </th>
                                        <th align="center" >
                                                <html:link
page="/eFilerUpdateState.do?action=UpdateState" ><bean:message
key="eFilerList.activate.deactivate"/></html:link>
                                        </th>

                                </tr>

                                <logic:iterate id="eFilerList"
name="eFilerList" scope="request" property="efilers">
                                  <tr>
                                    <td align="center">
                                      <bean:write name="eFilerList"
property="firstName" filter="true"/>
                                    </td>
                                    <td align="center">
                                      <bean:write name="eFilerList"
property="initials" filter="true"/>
                                    </td>
                                    <td align="center">
                                      <bean:write name="eFilerList"
property="lastName" filter="true"/>
                                    </td>
                                    <td align="center">
                                      <bean:write name="eFilerList"
property="idNumber"/>
                                    </td>
                                    <td align="center">
                                      <bean:write name="eFilerList"
property="state"/>
                                    </td>                                   
                                    <td align="center">
                                                <html:link
page="/eFilerEdit.do?action=Edit" ><bean:message
key="eFilerList.edit"/></html:link>
                                        </td>
                                    <td align="center">
                                      <html:checkbox name="eFilerList"
property="state"/>
                                    </td>
                                        
                                  </tr>
                                </logic:iterate>
 
                        </table>
I want ot update the "state" property using the checkbox <html:checkbox
name="eFilerList" property="state"/>. does anyone have any suggestions?
Pleeeaaasssseee!!

Reply via email to