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;