Data-Scrollable

From Documentation
Revision as of 22:42, 14 April 2014 by Noahhuang (talk | contribs) (Created page with " {{ZKConfigurationReferencePageHeader}} if user scroll container widget which applies the data-scrollable attribute, the errorbox inside the container widget should also scroll<r...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)


if user scroll container widget which applies the data-scrollable attribute, the errorbox inside the container widget should also scroll[1].

 Since ZK 7.0.1
<div xmlns:ca="client/attribute">
<window height="100px" contentStyle="overflow:auto" ca:data-scrollable="true">
</window>
</div>

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

 ZK EE tablet only
<div xmlns:ca="client/attribute">
<listbox xmlns:a="client/attribute" a:data-scrollable="false"/>
</div>