When to Save Data from UI Components to the Data Source"

From Documentation
m
m (correct highlight (via JWB))
 
Line 4: Line 4:
 
{{ZKDevelopersGuidePageHeader}}
 
{{ZKDevelopersGuidePageHeader}}
  
Data Binding Manager is triggered by events, or users' activities. Thus, you must specify events in the ZUML annotation expression with <tt>save-when</tt> tag expression to tell Data Binding Manager when to save the attribute of the component into the data source.  
+
Data Binding Manager is triggered by events, or users' activities. Thus, you must specify events in the ZUML annotation expression with <code>save-when</code> tag expression to tell Data Binding Manager when to save the attribute of the component into the data source.  
  
<tt><component-name attribute-name="@{bean-name.attribute-name,save-when='component-id.event-name'}"/></tt>
+
<code><component-name attribute-name="@{bean-name.attribute-name,save-when='component-id.event-name'}"/></code>
  
  
* <tt>component-id</tt> represents the ID of a UI component
+
* <code>component-id</code> represents the ID of a UI component
* <tt>event-name</tt> represents the event name
+
* <code>event-name</code> represents the event name
  
 
Multiple definition is allowed and would be called one by one.  
 
Multiple definition is allowed and would be called one by one.  
  
In the following example, Data Binding Manager will save the attribute "<tt>value</tt>" of <tt>Textbox</tt> "<tt>firstName</tt>" into "<tt>person.firstName</tt>" when the <tt>Textbox</tt> itself fires "<tt>onChange</tt>" event.  
+
In the following example, Data Binding Manager will save the attribute "<code>value</code>" of <code>Textbox</code> "<code>firstName</code>" into "<code>person.firstName</code>" when the <code>Textbox</code> itself fires "<code>onChange</code>" event.  
  
 
<source lang="xml" >
 
<source lang="xml" >

Latest revision as of 10:40, 19 January 2022

Stop.png This documentation is for an older version of ZK. For the latest one, please click here.

DocumentationZK Developer's GuideZK in DepthData BindingWhen to Save Data from UI Components to the Data Source
When to Save Data from UI Components to the Data Source


Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


Data Binding Manager is triggered by events, or users' activities. Thus, you must specify events in the ZUML annotation expression with save-when tag expression to tell Data Binding Manager when to save the attribute of the component into the data source.

<component-name attribute-name="@{bean-name.attribute-name,save-when='component-id.event-name'}"/>


  • component-id represents the ID of a UI component
  • event-name represents the event name

Multiple definition is allowed and would be called one by one.

In the following example, Data Binding Manager will save the attribute "value" of Textbox "firstName" into "person.firstName" when the Textbox itself fires "onChange" event.

<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit"?>

<window width="500px">
	<zscript><![CDATA[
		Person person = new Person();
		person.setFirstName("Bill");
		person.setLastName("Gates");
	]]>
	</zscript>

	<listbox>
		<listhead>
			<listheader label="First Name" width="100px"/>
			<listheader label="Last Name" width="100px"/>
			<listheader label="Full Name" width="100px"/>
		</listhead>
		<listitem>
			<listcell>
				<textbox id="firstName" value="@{person.firstName, save-when='self.onChange'}"/>
			</listcell>
			<listcell>
				<textbox id="lastName" value="@{person.lastName, save-when='self.onChange'}"/>
			</listcell>
			<listcell label="@{person.fullName}"/>
		</listitem>
	</listbox>
</window>

Version History

Last Update : 2022/01/19


Version Date Content
     



Last Update : 2022/01/19

Copyright © Potix Corporation. This article is licensed under GNU Free Documentation License.