Define the Access Privilege of Data Binding Manager"

From Documentation
m
(No difference)

Revision as of 04:15, 20 October 2010


DocumentationZK Developer's ReferenceData BindingDefine the Access Privilege of Data Binding Manager
Define the Access Privilege of Data Binding Manager


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>

Version History

Last Update : 2010/10/20

Version Date Content
     



Last Update : 2010/10/20

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