Client Attribute"

From Documentation
m
 
(21 intermediate revisions by 6 users not shown)
Line 32: Line 32:
 
</source>
 
</source>
  
'''data-swipeable'''
+
The other use of the client-attribute namespace is to specify attributes that are available only to certain browsers, such as accessibility and [http://www.section508.gov/index.cfm?FuseAction=Content&ID=12#Web Section 508].
  
  ZK EE tablet only
+
== Binding to client attribute from MVVM view model ==
Each layout region in borderlayout can support the closing and opening of the region area by user's swipe on the edge of the region with client/attribute<ref>For more information, please refer to [[ZK Component Reference/Tablet Devices/UI Enhancements/Borderlayout#SwipeEvent_Support|ZK Component Reference Tablet Devices: Borderlayout]].</ref>.
 
  
<source lang="xml">
+
Client-attributes are added to the rendering information of components, and must be follow the same rules as the special attributes.
<div xmlns:ca="client/attribute">
 
  <borderlayout xmlns:ca="client/attribute" ca:data-swipeable="true">
 
  whatever_value_you_want
 
  </borderlayout>
 
</div>
 
</source>
 
 
 
 
 
Tabbox supports the switching of tabs by user swiping on the edge of the content with client attribute<ref>For more information, please refer to [[ZK Component Reference/Tablet Devices/UI Enhancements/Tabbox#SwipeEvent_Support|ZK Component Reference Tablet Devices: Tabbox]].</ref>.
 
<source lang="xml">
 
<div xmlns:ca="client/attribute">
 
  <tabbox xmlns:ca="client/attribute" ca:data-swipeable="true">
 
  whatever_value_you_want
 
  </tabbox>
 
</div>
 
</source>
 
 
 
 
 
Within Tree, Grid, and Listbox, Paging can support the navigation to the previous or the next page by user swiping on the edge of the content with client attribute<ref>For more information, please refer to [[ZK Component Reference/Tablet Devices/UI Enhancements/Paging#SwipeEvent_Support|ZK Component Reference Tablet Devices: Paging]].</ref>.
 
<source lang="xml">
 
<div xmlns:ca="client/attribute">
 
<listbox mold="paging" pageSize="5" xmlns:ca="client/attribute" ca:data-swipeable="true"></listbox>
 
</div>
 
</source>
 
  
 +
The client attribute must be initialized using the `${value}` syntax, and doesn't support `@init`, `@load` or `@bind`.
  
Calendar can support the switching of view by user swiping on the content with client attribute<ref>For more information, please refer to [[ZK Component Reference/Tablet Devices/UI Enhancements/Calendar#Friendly_Scrolling_Support|ZK Component Reference Tablet Devices: Calendar]].</ref>.
 
 
<source lang="xml">
 
<source lang="xml">
 +
<!-- "forEach" versus children binding  -->
 
<div xmlns:ca="client/attribute">
 
<div xmlns:ca="client/attribute">
<calendar xmlns:ca="client/attribute" ca:data-swipeable="true" />
+
    <!-- correct use for non-dynamic attribute values -->
 +
    <checkbox ca:attribute="${vm.value}" />
 +
    <!-- binding a referenced value or dynamic value by recreating content after triggering a binding using shadow element apply -->
 +
    <apply refvalue="@load(vm.value)">
 +
        <!-- apply content is recreated when the binding expression "vm.value" is notified -->
 +
        <!-- using ${value} is correct, since expression is re-evaluated once the apply content is recreated -->
 +
        <checkbox ca:attribute="${refvalue}" />
 +
    </apply>
 
</div>
 
</div>
 
</source>
 
</source>
  
'''data-scrollable'''
+
== Data-Attribute Handler ==
 +
Developer can define their own data-handler for the client attribute to have an extra functionality.
 +
For example, (jQuery's mask)
  
if user scroll container widget which applies the data-scrollable attribute, the errorbox inside the container widget should also scroll<ref>
+
'''Zul File:'''
For more information, please refer to http://www.zkoss.org/javadoc/7.0.1/jsdoc/zul/ContainerWidget.html</ref>.
 
  Since ZK 7.0.1
 
 
<source lang="xml">
 
<source lang="xml">
<div xmlns:ca="client/attribute">
+
<textbox xmlns:ca="client/attribute" ca:data-mask="00:00:00" onChange='Clients.log(self.value)'/>
<window height="100px" contentStyle="overflow:auto" ca:data-scrollable="true">
 
</window>
 
</div>
 
 
</source>
 
</source>
  
When user swipes on the content of Listbox, Grid, Tree in a tablet device, the friendly scrollbar will appear. To disable the friendly scrollbar, please use the following setting<ref>For more information, please refer to [[ZK Component Reference/Tablet Devices/UI Enhancements/Listbox#Friendly_Scrolling_Support|ZK Component Reference Tablet Devices: Listbox]], [[ZK Component Reference/Tablet Devices/UI Enhancements/Grid#Friendly_Scrolling_Support|ZK Component Reference Tablet Devices: Grid]], [[ZK Component Reference/Tablet Devices/UI Enhancements/Tree#Friendly_Scrolling_Support|ZK Component Reference Tablet Devices: Tree]].</ref>.
+
'''zk.xml:'''
 
 
  ZK EE tablet only
 
 
 
 
<source lang="xml">
 
<source lang="xml">
<div xmlns:ca="client/attribute">
+
<client-config>
<listbox xmlns:a="client/attribute" a:data-scrollable="false"/>
+
<data-handler>
</div>
+
<name>mask</name><!-- the attribute name, i.e. data-mask -->
</source>
+
<script src="http://igorescobar.github.io/jQuery-Mask-Plugin/js/jquery.mask.min.js" />
 
+
<script>
'''data-embedscrollbar'''
+
function (wgt, dataValue) {
  ZK EE tablet only
+
jq(wgt.$n()).mask(dataValue);
To show the position of zk customized scrollbar, the mesh component should apply data-embedscrollbar attribute.
 
  
<source lang="xml">
+
// unformat after onChange event.
<div xmlns:ca="client/attribute">
+
wgt.listen({onChange: function (event) {
<grid ca:data-embedscrollbar="true"></grid>
+
event.data.value = jq(this.$n()).cleanVal();
</div>
+
}});
 +
}
 +
</script>
 +
</data-handler>
 +
</client-config>
 
</source>
 
</source>
  
'''data-fixscrollposition'''
+
=== Syntax Definition ===
 +
* '''&lt;data-handler>''': a group of a data-attribute handler <ref name="required">Required</ref> <ref name="multiple">One or Many</ref>
 +
** '''&lt;name>''': the attribute name. (i.e. data-name) <ref name="required"/>
 +
** '''&lt;override>''': true means the handler is used to override another existing one. <ref name="optional">Optional</ref>
 +
** '''&lt;link>''': the url for extra CSS files <ref name="multiple"/><ref name="optional"/>
 +
** '''&lt;script>''' the script content <ref name="required">Required</ref> <ref name="multiple">One or Many</ref>
 +
*** '''&lt;script src="foo.js">''' the src attribute for the script (Javascript library or data-handler script), it can be a url of a JS script from context-path or a url from class-path. For example, <pre><script-uri>~./myscript</script-uri></pre>
 +
*** Notice that the last <code><script></code> tag should be your data-handler script.
  
To prevent conflict with 'next' and 'previous' button on the virtual keyboard on iPad. The input element should apply data-fixScrollPosition attribute<ref>For more information, please refer to http://tracker.zkoss.org/browse/ZK-1285</ref>.
+
To see more examples, please refer to [http://blog.zkoss.org/index.php/2015/08/25/zk8-simple-but-powerful-using-data-handler-api-to-work-with-front-end-technologies/ ZK8: Simple but Powerful; Using Data-handler API to Work with Front-End Technologies] and [https://github.com/zkoss/zk8-datahandler Github] (you can design your own data-attribute handler and contribute this project).
<source lang="xml">
 
<div xmlns:ca="client/attribute">
 
<textbox xmlns:ca="client/attribute" ca:data-fixScrollPosition="true"></textbox>
 
</div>
 
</source>
 
  
The other use of the client-attribute namespace is to specify attributes that are available only to certain browsers, such as accessibility and [http://www.section508.gov/index.cfm?FuseAction=Content&ID=12#Web Section 508].
 
  
 
<blockquote>
 
<blockquote>
Line 118: Line 99:
 
<references/>
 
<references/>
 
</blockquote>
 
</blockquote>
 +
{{ZUMLReferenceHeadingToc}}
  
 
=Version History=
 
=Version History=
Line 127: Line 109:
 
| July 2010
 
| July 2010
 
| The client-attribute namespace was introduced.
 
| The client-attribute namespace was introduced.
 +
|-
 +
| 8.0.0
 +
| May 2015
 +
| [http://tracker.zkoss.org/browse/ZK-2730 Support client data attributes handler]
 
|}
 
|}
  
 
{{ZUMLReferencePageFooter}}
 
{{ZUMLReferencePageFooter}}

Latest revision as of 10:19, 15 August 2023


Client Attribute


Name: client attribute
Namespace: http://www.zkoss.org/2005/zk/client/attribute
Namespace shortcut: client/attribute
Java: LanguageDefinition.CLIENT_ATTRIBUTE_NAMESPACE

It is the reserved namespace for specifying client-side DOM attributes. Unlike the client namespace, which assigns something to widgets, the client/attribute namespace assigns additional DOM attributes to the DOM tree directly at the client.


Notice that if the widget's DOM output (Widget.redraw(Array)) also has the same DOM attribute, both of them will be generated and it is technically not legal. Thus, you should prevent the DOM attributes that widget might output.

For example, suppose you want to listen to the onload event, you can do as follows[1].

<iframe src="http://www.google.com" width="100%" height="300px"
  xmlns:ca="client/attribute"
  ca:onload="do_whater_you_want()"/>


If the attribute contains colon or other special characters, you can use the attribute element as follows.

<div xmlns:ca="client/attribute">
  <attribute ca:name="ns:whatever">
  whatever_value_you_want
  </attribute>
</div>

The other use of the client-attribute namespace is to specify attributes that are available only to certain browsers, such as accessibility and Section 508.

Binding to client attribute from MVVM view model

Client-attributes are added to the rendering information of components, and must be follow the same rules as the special attributes.

The client attribute must be initialized using the `${value}` syntax, and doesn't support `@init`, `@load` or `@bind`.

<!-- "forEach" versus children binding  -->
<div xmlns:ca="client/attribute">
    <!-- correct use for non-dynamic attribute values -->
    <checkbox ca:attribute="${vm.value}" />
    <!-- binding a referenced value or dynamic value by recreating content after triggering a binding using shadow element apply -->
    <apply refvalue="@load(vm.value)">
        <!-- apply content is recreated when the binding expression "vm.value" is notified -->
        <!-- using ${value} is correct, since expression is re-evaluated once the apply content is recreated -->
        <checkbox ca:attribute="${refvalue}" />
    </apply>
</div>

Data-Attribute Handler

Developer can define their own data-handler for the client attribute to have an extra functionality. For example, (jQuery's mask)

Zul File:

<textbox xmlns:ca="client/attribute" ca:data-mask="00:00:00" onChange='Clients.log(self.value)'/>

zk.xml:

<client-config>	
	<data-handler>
		<name>mask</name><!-- the attribute name, i.e. data-mask -->
		<script src="http://igorescobar.github.io/jQuery-Mask-Plugin/js/jquery.mask.min.js" />
		<script>
		function (wgt, dataValue) {
			jq(wgt.$n()).mask(dataValue);

			// unformat after onChange event.
			wgt.listen({onChange: function (event) {
				event.data.value = jq(this.$n()).cleanVal();
			}});
		}
		</script>
	</data-handler>
</client-config>

Syntax Definition

  • <data-handler>: a group of a data-attribute handler [2] [3]
    • <name>: the attribute name. (i.e. data-name) [2]
    • <override>: true means the handler is used to override another existing one. [4]
    • <link>: the url for extra CSS files [3][4]
    • <script> the script content [2] [3]
      • <script src="foo.js"> the src attribute for the script (Javascript library or data-handler script), it can be a url of a JS script from context-path or a url from class-path. For example,
        <script-uri>~./myscript</script-uri>
      • Notice that the last <script> tag should be your data-handler script.

To see more examples, please refer to ZK8: Simple but Powerful; Using Data-handler API to Work with Front-End Technologies and Github (you can design your own data-attribute handler and contribute this project).



  1. For more information, please refer to ZK Component Reference: iframe.
  2. 2.0 2.1 2.2 Required
  3. 3.0 3.1 3.2 One or Many
  4. 4.0 4.1 Optional


Version History

Last Update : 2023/08/15


Version Date Content
5.0.3 July 2010 The client-attribute namespace was introduced.
8.0.0 May 2015 Support client data attributes handler



Last Update : 2023/08/15

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