I have a class MyForm extends LazyValidatorForm, mapped with name myForm
to myAction:
<html:form action="/myAction">
${myForm.myProperty}
</html:form>
The EL fails with a complaint about accessing myProperty of bean myForm
(since there's no getMyProperty() accessor). How can I access
properties with EL?
I have
<jsp:useBean id="myBean" class="mypkg.MyBean" scope="request">
<jsp:setProperty name="myBean" property="myProperty"
value="${myForm.myProperty}" />
</jsp:useBean>
But naturally, this fails as well.
Thanks,
Scott
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]