RE: Indexed properties...setters and getters

2002-01-17 Thread Rey Francois
What are the methods on your form bean? Are they public? It may help to see your code. Fr. -Original Message- From: Tom Goemaes [mailto:[EMAIL PROTECTED]] Sent: 17 January 2002 09:34 To: Struts Users Mailing List Subject: Re: Indexed properties...setters and getters Is the indexed

RE: Indexed properties...setters and getters

2002-01-17 Thread Tom Klaasen (TeleRelay)
ubject: Re: Indexed properties...setters and getters > > > Is the indexed feature supported in 1.0.1 ? don't think so... > not sure. > Use the nightly builds. > > > "Struts Users Mailing List" <[EMAIL PROTECTED]> wrote: > --

RE: Indexed properties...setters and getters

2002-01-17 Thread Tom Klaasen (TeleRelay)
: TODD HARNEY [mailto:[EMAIL PROTECTED]] > Sent: woensdag 16 januari 2002 18:52 > To: [EMAIL PROTECTED] > Subject: Indexed properties...setters and getters > > > If I have a html:text field on my form with the property > named table[5].minimumSales, wouldn't this

Re: Indexed properties...setters and getters

2002-01-16 Thread Tom Goemaes
Is the indexed feature supported in 1.0.1 ? don't think so... not sure. Use the nightly builds. "Struts Users Mailing List" <[EMAIL PROTECTED]> wrote: >If I have a html:text field on my form with the property named table[5].min >imumSale

Re: Indexed properties...setters and getters

2002-01-16 Thread Arron Bates
Is "table[5].minimumSales" the tag's "name" or its "property" property?... Have you tried the nested extension for doing this stuff?... Arron. TODD HARNEY wrote: >If I have a html:text field on my form with the property named table[5].minimumSales, >wouldn't this result in: > >1) A getTable(

Indexed properties...setters and getters

2002-01-16 Thread TODD HARNEY
If I have a html:text field on my form with the property named table[5].minimumSales, wouldn't this result in: 1) A getTable(5).getMinimumSales() for displaying the form 2) A getTable(5).setMinimumSales(data) for posting the form through an Action class I am not seeing this behavior at all in m