Absolute position

From Documentation
Revision as of 07:57, 15 July 2010 by Maya001122 (talk | contribs) (Created page with '{{ZKDevelopersGuidePageHeader}} By setting <tt>window</tt>'s <tt>left</tt>, <tt>top</tt>, <tt>mode="overlapped"</tt>, you can layout <tt>window</tt> by absolute position. Then, …')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)

Stop.png This documentation is for an older version of ZK. For the latest one, please click here.


By setting window's left, top, mode="overlapped", you can layout window by absolute position. Then, you can put component inside window.

Following is a example:

<window>
	<button label="ok" width="300px" height="300px" />
	<window left="200px" top="200px" mode="overlapped">
		<button label="ok" />
	</window>
</window>

Currently only window support mode="overlapped".



Last Update : 2010/07/15

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