Have you tested this? I'd like to see a proper integration test, as there's some client-side work that needs to be done as well (based on work I've done for a client).
On Sun, Nov 8, 2009 at 1:32 PM, <[email protected]> wrote: > Author: drobiazko > Date: Sun Nov 8 21:32:00 2009 > New Revision: 833930 > > URL: http://svn.apache.org/viewvc?rev=833930&view=rev > Log: > TAP5-138: Add Zone parameter to Select component > > Modified: > > tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Select.java > > Modified: > tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Select.java > URL: > http://svn.apache.org/viewvc/tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Select.java?rev=833930&r1=833929&r2=833930&view=diff > ============================================================================== > --- > tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Select.java > (original) > +++ > tapestry/tapestry5/trunk/tapestry-core/src/main/java/org/apache/tapestry5/corelib/components/Select.java > Sun Nov 8 21:32:00 2009 > @@ -128,6 +128,13 @@ > @Parameter(required = true, principal = true, autoconnect = true) > private Object value; > > + /** > + * Binding the zone parameter will cause any change of Select's value to > be handled as an Ajax request that updates the > + * indicated zone. The component will trigger the event {...@link > EventConstants#VALUE_CHANGED} to inform its > + * container that Select's value has changed. > + * > + * @since 5.2.0.0 > + */ > @Parameter(defaultPrefix = BindingConstants.LITERAL) > private String zone; > > > > -- Howard M. Lewis Ship Creator of Apache Tapestry The source for Tapestry training, mentoring and support. Contact me to learn how I can get you up and productive in Tapestry fast! (971) 678-5210 http://howardlewisship.com --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
