On Thu, 2002-08-15 at 12:37, Chandra Sekharan Bhaskaran wrote:
> I have submit button in the iterate tag
> I need to pass the parameter <bean:write name="companionInfo"
> property="companionArticleNumber" />",this)
> to deletescript and it gives me parsing error.
> any one had worked on this pls let me know
> rgds
> C.Bhaskaran
>
> <html:submit property="delete" onclick="deletescript("<bean:write
> name="companionInfo" property="companionArticleNumber" />",this)"
> styleId="formbuttons" />
> <bean:message
> key="labels.buttons.msmetadata.companion.deleteCompanion" />
> </html:submit>
> ----
>
You can not embed the the <bean:write> tag inside <html:submit> tag. The
following is one alternative:
<html:submit property="delete"
onclick="deletescript('<%=companionInfo.getCompanionArticleNumber()%>',this)"
styleId="formbuttons">
<bean:message
key="labels.buttons.msmetadata.companion.deleteCompanion"/>
</html:submit>
Troy
> **************************Disclaimer************************************
>
>
> Information contained in this E-MAIL being proprietary to Wipro Limited
> is 'privileged' and 'confidential' and intended for use only by the
> individual or entity to which it is addressed. You are notified that any
> use, copying or dissemination of the information contained in the E-MAIL
> in any manner whatsoever is strictly prohibited.
>
>
> *****************************************************************************
>
> ----
>
> --
> To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>