Define the Access Privilege of Data Binding Manager

From Documentation
Revision as of 03:16, 15 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} For better control of data-binding manager, you can set the access mode of the attribute-name of the component-name to be <tt>both</tt>(load/save…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
DocumentationZK Developer's ReferenceData BindingDefine the Access Privilege of Data Binding Manager
Define the Access Privilege of Data Binding Manager


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


For better control of data-binding manager, you can set the access mode of the attribute-name of the component-name to be both(load/save), load(load Only), save(save Only), or none(neither) .

<component-name attribute-name="@{bean-name.attribute-name,access='type-name'}"/>

  • type-name represents a certain kind of access mode

Multiple definition is NOT allowed and the later defined would override the previous defined one. 

In the following example, if the value of Textbox, "firstName", and "lastName" has been modified, the value of Listcell, "fullname", will remain unchanged because Data Binding manager is informed not to update its value.

<?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}" />
			</listcell>
			<listcell>
				<textbox id="lastName" value="@{person.lastName}" />
			</listcell>
			<listcell id="fullName"
				label="@{person.fullName, access='none'}" />
		</listitem>
	</listbox>
</window>



Last Update : 2010/07/15

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