Recent Changes - Search:

Administrators

Developers

Articles

Cookbook

edit

height Property

Developers.QuiXheight History

Hide minor edits - Show changes to markup

February 18, 2007, at 08:32 PM by Tassos Koutsovassilis -
Changed lines 21-23 from:
calculatedA string expression that once evaluated, returns the widget's height.
For instance, a value of "this.parent.getHeight(true)-30" makes the current widget 30 pixels shorter than its parent.

to:
calculatedA string expression or function that once evaluated or called, returns the widget's height.
For instance, a value of "this.parent.getHeight(true)-30" makes the current widget 30 pixels shorter than its parent.

June 08, 2006, at 03:32 PM by Tassos Koutsovassilis -
Changed lines 16-17 from:

The height property can be of the following types:

to:

The height property can be of the following types:

June 08, 2006, at 03:22 PM by Tassos Koutsovassilis -
Changed lines 3-4 from:

Gets or sets the widget's height. In order, for the new height to be applied you need to redraw the widget by calling its "redraw" method.

to:

Gets or sets the widget's height. For the new height to be applied, you need to redraw the widget by calling its "redraw" method.

Added lines 16-23:

The height property can be of the following types:

lengthInteger that specifies the widget's height in pixels.
percentageAn integer followed by the "%" sign. The value is a percentage of the height of the parent widget.
calculatedA string expression that once evaluated, returns the widget's height.
For instance, a value of "this.parent.getHeight(true)-30" makes the current widget 30 pixels shorter than its parent.

June 08, 2006, at 03:08 PM by Tassos Koutsovassilis -
Added lines 1-15:

(:title height Property:)

Gets or sets the widget's height. In order, for the new height to be applied you need to redraw the widget by calling its "redraw" method.

Syntax

QuiX XML
<qx:rect xmlns:qx="http://www.innoscript.org/quix" height="100%">
</qx:rect>
JavaScriptwidget.height = "100%";

Possible values

Page last modified on February 18, 2007, at 08:32 PM