UI Component Forest
This documentation is for an older version of ZK. For the latest one, please click here.
Forest of Trees of Components
Like a tree structure, a component has at most one parent. A component might have multiple children. All components of a page
form a DOM tree.
Some components accept only certain types of components as children. Some must be a child of certain type of components. Some don't allow any child at all. For example, Listbox
in XUL accepts Listcols
and Listitem
only. Refer to Javadoc or XUL tutorials for details.
A component without any parent is called a root component. A page might have multiple root components, but this is against XML's syntax limitation: One document root only. You may use tags as zk
, window
, span
, div
as the document root to group these root components
ID Space
It is common to decompose a visual presentation into several ZUML pages. For example, a page for displaying a purchase order, and a modal dialog for entering the payment term. If all components are uniquely identifiable in the same desktop, developers have to maintain the uniqueness of all identifiers for all pages that might created to the same desktop.
The concept of ID space is hence introduced to resolve this issue. An ID space is a subset of components of a desktop. The uniqueness is guaranteed only in the scope of an ID space.
The simplest form of an ID space is a window
(Window ). All descendant components of a window
(including the window itself) forms an independent ID space. Thus, you could use a window
as the topmost component of each page, such that developers need to maintain the uniqueness of each page separately.
More generally, any component could form an ID space as long as it implements the IdSpace interface. Page
also implements the IdSpace interface, so it is also a space owner. Besides window
and page
, regular macro
is another built-in space owner.
The topmost component of an ID space is called the owner of the ID space, which could be retrieved by the getSpaceOwner
method in the Component interface.
If an ID space, say X, is a descendant of another ID space, say Y, then space X's owner is part of space Y but descendants of X is not part of space Y.
Following zul example will get an ID space graph as below:
<?page id="P"?>
<zk>
<window id="A">
<hbox id="B">
<button id="D" />
</hbox>
<window id="C">
<button id="E" />
</window>
</window>
<hbox id="F">
<button id="G" />
</hbox>
</zk>
As depicted in the figure, there are three spaces: P, A and C. Space P includes P, A, F and G. Space A includes A, B, C and D. Space C includes C and E.
Components in the same ID spaces are called fellows. For example, A, B, C and D are fellows of the same ID space.
To retrieve another fellow, you could use the getFellow
method in the IdSpace
interface or the Component
interface.
Notice that the getFellow
method can be invoked against any components in the same ID space, not just the space owner. Similarly, the getSpaceOwner
method returns the same object for any components in the same ID space, no matter it is the space owner or not. In the example above, if C calls getSpaceOwner
will get C itself, if C calls getSpaceOwnerOfParent
will get A.
The Path class provides utilities to simplify the location of a component among ID spaces. The way of using it is similar to java.io.File
.
//below are 3 different ways to get the same component E
Path.getComponent("/A/C/E");//if call Path.getComponent under the same page.
new Path("A/C", "E").getComponent();
Path.getComponent("//P/A/C/E");//for page, you have to use // as prefix
Remember that each GUI component has its corresponding java object. Through Path.getComponent()
, you can get the object in java, and do whatever you want to manipulate the java object. Learn more
Namespace and ID Space
To grant the interpreter an access to the components directly, the namespace concept (Namespace ) is introduced.
- First, each ID space corresponds to exactly one namespace.
- Second, variables defined in a namespace are visible to the zscript codes and EL expressions that belong to the same namespace.
In the following example, it will show: Hi, namespace Hi, namespace
<window border="normal">
<label id="l" value="changed by zscript, therefore not shown"/>
<zscript>
l.value = "Hi, namespace";
</zscript>
${l.value}
</window>
${l.value}
is an EL expression, it means get the value of l
.
In the following example, there are two namespaces. One belongs to window w1
while the other belongs to window w2
. Thus, the b1
button's onClick
script refers to the label defined in window w2
, while the b2
button's onClick
script refers to the checkbox defined in window w1
.
<window id="w1">
<window id="w2">
<label id="c"/>
<button id="b1" onClick="c.value = "OK"" label="click me"/>
</window>
<checkbox id="c"/>
<button id="b2" onClick="c.label = "OK"" label="click me"/>
</window>
- Notice the namespace is hierarchical.
In other words, zscript
in window w2
can see components in window w1
, unless it is overridden in window w2
. Thus, clicking button b1
will change label of c
to "OK" in the following example.
<window id="w1">
<window id="w2">
<button id="b1" onClick="c.value = "OK"" label="Click me"/>
</window>
<label id="c"/>
</window>
It looks strange at first glance, as onClick="c.value = "OK""
appears before <label id="c"/>
is defined. Don't we have to declare variable before using it? Actually, it's a life cycle issue. zscript
inside onClick
is only evaluated when user actually clicks on the button. At that time, <label id="c"/>
has been created already and is certainly visible to zscript
.
Manipulate DOM by Java
DOM(Document Object Model) is generated as the layout of zul components in ZUML. In addition to ZUML, you can use Java to add, remove, move nodes in DOM manually. When a component is created manually, it won't be added to any page automatically. In other words, it doesn't appear at user's browser. To add it to a page, you could invoke the setParent
, appendChild
or insertBefore
method to assign a parent to it, and it becomes a part of a page if the parent is a part of a page.
As demonstrated in section Design pattern: MVC, a label
is appended to window
when the button
is clicked. A node that represents the label
is added to the DOM tree, and the node of window
is its parent.
evt.getTarget().appendChild(new Label("Hello"));
Another way to add new child is through Executions.createComponents
. Please refer to java doc for Executions
Note that, we can also write java code inside *.zul, which is called zscript
.