Sorry I should have asked what is not working?

> -----Original Message-----
> From: Alex Shneyderman [mailto:[EMAIL PROTECTED]
> Sent: Monday, July 21, 2003 4:36 PM
> To: 'Struts Users Mailing List'
> Subject: RE: Question on how to remove a detail row?
> 
> Do you use el tags?
> 
> > -----Original Message-----
> > From: Norr, Peter [mailto:[EMAIL PROTECTED]
> > Sent: Monday, July 21, 2003 4:34 PM
> > To: 'Struts Users Mailing List'
> > Subject: RE: Question on how to remove a detail row?
> >
> > Ok, how do I code the onclick param??  Below does not work?
> >
> >
> >  <c:forEach items="${OptimizerInputFormBean.constraints}"
> var="constraint"
> > varStatus="iter">
> >                         <tr>
> >                           <td><c:out
> value="${constraint.type}"/></td>
> >                           <td><c:out
> value="${constraint.shares}"/></td>
> >                             <td><c:out
> > value="${constraint.lowerBound}"/></td>
> >                               <td><c:out
> > value="${constraint.upperBound}"/></td>
> >                                 <td><html:submit
> > onclick="removeConstraint(${iter.count})" property="submit"
> > value="removeConstraint"/></td>
> >                                     </tr>
> >                               </c:forEach>
> >
> > -----Original Message-----
> > From: Mike Jasnowski [mailto:[EMAIL PROTECTED]
> > Sent: Monday, July 21, 2003 3:12 PM
> > To: Struts Users Mailing List
> > Subject: RE: Question on how to remove a detail row?
> >
> >
> > You could generate an onclick eventhandler for each button,
> parameterized
> > with the record ID, or some other data. Then when the button is
> clicked,
> > it
> > can set a parameter (or hidden form field) that identifies the row.
> >
> > -----Original Message-----
> > From: Norr, Peter [mailto:[EMAIL PROTECTED]
> > Sent: Monday, July 21, 2003 3:07 PM
> > To: 'Struts Users Mailing List'
> > Subject: Question on how to remove a detail row?
> >
> >
> > Hi,
> >
> > I have the following code.. It prints out a "remove"  button on each
> row..
> >
> > How do I determine on which row the remove button was pressed?
> >
> > <c:forEach items="${OptimizerInputFormBean.constraints}"
> var="constraint"
> > varStatus="iter">
> >                 <tr>
> >                   <td><c:out value="${constraint.type}"/></td>
> >                   <td><c:out value="${constraint.shares}"/></td>
> >                     <td><c:out
> value="${constraint.lowerBound}"/></td>
> >                       <td><c:out
> value="${constraint.upperBound}"/></td>
> >                         <td><c:out value="${iter.count}"/></td>
> >                         <td><html:submit property="submit"
> > value="removeConstraint"></html:submit></td>
> >                       </tr>
> >           </c:forEach>
> >
> >
>
------------------------------------------------------------------------
> --
> > --
> > --
> > This message is intended only for the personal and confidential use
of
> the
> > designated recipient(s) named above.  If you are not the intended
> > recipient
> > of this message you are hereby notified that any review,
> dissemination,
> > distribution or copying of this message is strictly prohibited.
This
> > communication is for information purposes only and should not be
> regarded
> > as
> > an offer to sell or as a solicitation of an offer to buy any
financial
> > product, an official confirmation of any transaction, or as an
> official
> > statement of Lehman Brothers.  Email transmission cannot be
guaranteed
> to
> > be
> > secure or error-free.  Therefore, we do not represent that this
> > information
> > is complete or accurate and it should not be relied upon as such.
All
> > information is subject to change without notice.
> >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> >
> >
> >
>
------------------------------------------------------------------------
> --
> > ----
> > This message is intended only for the personal and confidential use
of
> the
> > designated recipient(s) named above.  If you are not the intended
> > recipient of this message you are hereby notified that any review,
> > dissemination, distribution or copying of this message is strictly
> > prohibited.  This communication is for information purposes only and
> > should not be regarded as an offer to sell or as a solicitation of
an
> > offer to buy any financial product, an official confirmation of any
> > transaction, or as an official statement of Lehman Brothers.  Email
> > transmission cannot be guaranteed to be secure or error-free.
> Therefore,
> > we do not represent that this information is complete or accurate
and
> it
> > should not be relied upon as such.  All information is subject to
> change
> > without notice.
> >
> >
> >
> >
---------------------------------------------------------------------
> > To unsubscribe, e-mail: [EMAIL PROTECTED]
> > For additional commands, e-mail: [EMAIL PROTECTED]
> 
> 
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: [EMAIL PROTECTED]
> For additional commands, e-mail: [EMAIL PROTECTED]



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

Reply via email to