Data-Swipeable

From Documentation
Revision as of 01:34, 16 April 2014 by Noahhuang (talk | contribs)
 ZK EE tablet only

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[1].

<div xmlns:ca="client/attribute">
  <borderlayout xmlns:ca="client/attribute" ca:data-swipeable="true">
  whatever_value_you_want
  </borderlayout>
</div>


Tabbox supports the switching of tabs by user swiping on the edge of the content with client attribute[2].

<div xmlns:ca="client/attribute">
  <tabbox xmlns:ca="client/attribute" ca:data-swipeable="true">
  whatever_value_you_want
  </tabbox>
</div>


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[3].

<div xmlns:ca="client/attribute">
<listbox mold="paging" pageSize="5" xmlns:ca="client/attribute" ca:data-swipeable="true"></listbox>
</div>


Calendar can support the switching of view by user swiping on the content with client attribute[4].

<div xmlns:ca="client/attribute">
<calendar xmlns:ca="client/attribute" ca:data-swipeable="true" />
</div>

  1. For more information, please refer to ZK Component Reference Tablet Devices: Borderlayout.
  2. For more information, please refer to ZK Component Reference Tablet Devices: Tabbox.
  3. For more information, please refer to ZK Component Reference Tablet Devices: Paging.
  4. For more information, please refer to ZK Component Reference Tablet Devices: Calendar.


Last Update : 2014/04/16

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