This is probably a piece of cake for most of you, but I am having a heck of
a time with it.

I create a table of data in a JSP using the <Nested:Iterate> tag.  One
column of the table, the Terminate Date, is a text field.  The idea being
that the user can modify the Terminate date, click on the Update link in the
row next to it, and that row's data is sent back to the Action class and the
Terminate Date is updated with the modified data.

Unfortunately, when I click on the link, the original Terminate Date is sent
back to the Action class, not the modified Terminate Date, as if no change
was made.  Any ideas will be greatly appreciated?

JSP code snippet from "rulesUpdate.jsp":
<nested:iterate property="gridArray">
        <td><nested:write property="gridRuleNbr" filter="true"/></td>
        <td><nested:write property="payorId" filter="true"/></td>
        <td><nested:text property="terminateDate" size="10" maxlength="10"/></td>
        <td><<a href='/grid/web/primary_jsps/rulesUpdate.do?action=updateRow
                  &gridRuleNbr=<nested:write property="gridRuleNbr"/>
                  &terminateDate=<nested:write
property="terminateDate"/>'>Update&nbsp;</a></td>
        </tr>
</nested:iterate>


--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to