Rafael Nami wrote:
I'm trying to build a search, accessing a nested object, in a JSP,
that is inside a set nested in the a POJO, to perform a search in the
page.

For example, I have a PersonForm p -> Set purchases -> Product product -> Brand brand -> brand name

I was trying this approach:
[...]
    <html:text property="purchases.product.brand.name" size="15"/>
[...]
How can I do it?

The short answer is, you can't: there's no way to access members of a set directly like this. You'll need to change your form bean to store your purchases as an indexed property so you can address them with something like

    <html:text property="purchases[0].product.brand.name" size="15"/>

L.
--
Laurie Harper
Open Source advocate, Java geek: http://www.holoweb.net/laurie
Founder, Zotech Software: http://www.zotechsoftware.com/


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

Reply via email to