Associate UI Components with Data Source"

From Documentation
 
m
Line 1: Line 1:
#REDIRECT [[ZK Developer's Reference/Data Binding/Associate UI Components with Data Source]]
+
{{ZKDevelopersGuidePageHeader}}
 +
 
 +
Activates Data Binding Manager by defining the page Initializer at the top of the page.
 +
 
 +
<source lang="xml" >
 +
<?init class="org.zkoss.zkplus.databind.AnnotateDataBinderInit" ?>
 +
</source>
 +
 
 +
This initiator class do following things:
 +
 
 +
# Creates an <tt>AnnotateDataBinder</tt> instance.
 +
# Sets the <tt>AnnotateDataBinder</tt> instance as a variable with the name "''binder''" stored in the component as specified in <tt>arg0</tt> "component-path".(if arg0 is not specified, use <tt>Page</tt> instead.)
 +
# Calls <tt>DataBinder.loadAll()</tt> to initiate all UI components from the associated data source.
 +
 
 +
=Version History=
 +
{{LastUpdated}}
 +
{| border='1px' | width="100%"
 +
! Version !! Date !! Content
 +
|-
 +
| &nbsp;
 +
| &nbsp;
 +
| &nbsp;
 +
|}
 +
 
 +
{{ZKDevelopersGuidePageFooter}}

Revision as of 04:36, 18 January 2011

DocumentationZK Developer's GuideZK in DepthData BindingAssociate UI Components with Data Source
Associate UI Components with Data Source


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


Activates Data Binding Manager by defining the page Initializer at the top of the page.

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

This initiator class do following things:

  1. Creates an AnnotateDataBinder instance.
  2. Sets the AnnotateDataBinder instance as a variable with the name "binder" stored in the component as specified in arg0 "component-path".(if arg0 is not specified, use Page instead.)
  3. Calls DataBinder.loadAll() to initiate all UI components from the associated data source.

Version History

Last Update : 2011/01/18


Version Date Content
     



Last Update : 2011/01/18

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