I have a problem with using a collection and <html:input>.  I do this in
several places in my application and I cannot determine why this has stopped
working in IE only and this form only.  Here is a sample of the code:

<html:form action="/offerprice.do" method="post">
<html:hidden property="dispatch" value="" />
<html:errors />
<table>
  <c:forEach items="${offerPriceForm.offerPrices}"
             var="offerPrice"
             varStatus="rowId">
    <tr>
      <td><bean:write name="offerPrice" property="id" /></td>
      <td><html:text property="offerPrices[${rowId.count-1}].price" /></td>
       <td><html:image onclick="setDispatch('history',this.form);"
                       property="method"
                       src="images/buttons/history.gif" /></td>
    </tr>
   </c:forEach>
</table>
</html:form>

The problem is with the text field.  This was working for months, but
stopped recently.  The only thing I have changed is from XML to hibernate
annotations.

This form will no longer submit in IE.  Clicking any of the buttons(I
removed all but one for clarity) does nothing.  This does work in FireFox
and in other similar forms in my application.

I do not know what has changed and since I am getting no error messages and
nothing is being submitted I am at a lost.

I would greatly appreciate any help with this problem.

  



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

Reply via email to