Viewport"
From Documentation
m ((via JWB)) |
|||
Line 23: | Line 23: | ||
=Version History= | =Version History= | ||
{{LastUpdated}} | {{LastUpdated}} | ||
− | {| | + | {| class='wikitable' | width="100%" |
! Version !! Date !! Content | ! Version !! Date !! Content | ||
|- | |- |
Revision as of 13:14, 7 January 2022
Viewport Content
The default viewport content generated in ZK when using tablet device is:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Customize
User can specify viewport setting by library properties or XML processing instruction.
Library Properties
since 6.5.0
The default value of org.zkoss.zul.tablet.meta.viewport.disabled property is false
. If it is set to true
, ZK won't render viewport content for all pages. Thus, user can specify viewport on each ZUL page by meta instruction.
XML processing instruction
since 6.5.0
User can keep the default setting and assign custom viewport on specific pages by overwriting viewport content in page instruction as follows:
<?page viewport="width=device-width, initial-scale=1.0"?>
Version History
Version | Date | Content |
---|---|---|
6.5.0 | September, 2012 | new added configuration |