There's more about the dotted syntax here:
<
http://jakarta.apache.org/struts/api/org/apache/struts/taglib/bean/package-summary.html#doc.Properties
>
under Property References.
Like Struts-Bean tags, the property attribute for the Struts-HTML tags
accept simple, nested, and indexed expressions. For example, this tag:
<html:text property="mailingAddress.street"/>
corresponds to:
getMailingAddress().getStreet()
John Yu wrote:
>
> Ted,
>
> Could you elaborate a bit more on the "dotted syntax" and how to
> create a single ActionForm wrapping around other forms?
>
> You wrote on Mon, 09 Jul 2001 14:06:07 -0700:
>
> The short answer is you can't. Though, you could create a single
> ActionForm as a wrapper around other forms and then access them
> through the infamous "dotted" syntax. If that doesn't work for
> you, if you talked a bit more about why you want multiple forms,
> someone may have a better answer ;-)