Accessibility"

From Documentation
Line 3: Line 3:
 
__TOC__
 
__TOC__
  
 +
 +
Since 9.5.0
 +
{{ZK EE}}
  
 
= Required Setup=
 
= Required Setup=

Revision as of 03:18, 28 September 2020


Accessibility



Since 9.5.0
  • Available for ZK:
  • http://www.zkoss.org/product/zkhttp://www.zkoss.org/whyzk/zkeeVersion ee.png

Required Setup

ZK accessibility module is a separate, optional jar, you have to include it manually to enable it.

		<dependency>
			<groupId>org.zkoss.zk</groupId>
			<artifactId>za11y</artifactId>
			<version>${zk.version}</version>
		</dependency>


Check at Runtime

To ensure za11y.jar running as expected, you can simply inspect a textbox:

textbox.zul

<textbox />

Visit the zul page and Inspect the textbox with a browser developer tool, you will see:

<input id="h5AP0" class="z-textbox" type="text" 
       aria-disabled="false" aria-readonly="false">

If you see ARIA attributes rendered in the element, that mean the module works successfully.




Last Update : 2020/09/28

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