X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..7a654f8d43fdb43d78b63d90528bed6e86b608cc:/docs/api/Ext.layout.container.Anchor.html diff --git a/docs/api/Ext.layout.container.Anchor.html b/docs/api/Ext.layout.container.Anchor.html new file mode 100644 index 00000000..62cd5bc9 --- /dev/null +++ b/docs/api/Ext.layout.container.Anchor.html @@ -0,0 +1,159 @@ +
Hierarchy
Ext.layout.LayoutExt.layout.container.AbstractContainerExt.layout.container.ContainerExt.layout.container.Anchor
This is a layout that enables anchoring of contained elements relative to the container's dimensions. +If the container is resized, all anchored items are automatically rerendered according to their +anchor rules.
+ +This class is intended to be extended or created via the layout: 'anchor' Ext.layout.container.AbstractContainer.layout +config, and should generally not need to be created directly via the new keyword.
+ +AnchorLayout does not have any direct config options (other than inherited ones). By default, +AnchorLayout will calculate anchor measurements based on the size of the container itself. However, the +container using the AnchorLayout can supply an anchoring-specific config property of anchorSize. +If anchorSize is specifed, the layout will use it as a virtual container for the purposes of calculating +anchor measurements based on it instead, allowing the container to be sized independently of the anchoring +logic if necessary.
+ + + +For example:
+ +Ext.create('Ext.Panel', {
+ width: 500,
+ height: 400,
+ title: "AnchorLayout Panel",
+ layout: 'anchor',
+ renderTo: Ext.getBody(),
+ items: [{
+ xtype: 'panel',
+ title: '75% Width and 20% Height',
+ anchor: '75% 20%'
+ },{
+ xtype: 'panel',
+ title: 'Offset -300 Width & -200 Height',
+ anchor: '-300 -200'
+ },{
+ xtype: 'panel',
+ title: 'Mixed Offset and Percent',
+ anchor: '-250 20%'
+ }]
+});
+
+An optional extra CSS class that will be added to the container. This can be useful for adding +customized styles to the container or any of its children using standard CSS rules. See +Ext.Component.ctCls also.
+ + + +This configuation option is to be applied to child items of a container managed by +this layout (ie. configured with layout:'anchor').
+ + +This value is what tells the layout how an item should be anchored to the container. items +added to an AnchorLayout accept an anchoring-specific config property of anchor which is a string +containing two values: the horizontal anchor value and the vertical anchor value (for example, '100% 50%'). +The following types of anchor values are supported:
// two values specified
+anchor: '100% 50%' // render item complete width of the container and
+ // 1/2 height of the container
+// one value specified
+anchor: '100%' // the width value; the height will default to auto
+
// two values specified
+anchor: '-50 -100' // render item the complete width of the container
+ // minus 50 pixels and
+ // the complete height minus 100 pixels.
+// one value specified
+anchor: '-50' // anchor value is assumed to be the right offset value
+ // bottom offset will default to 0
+
anchor: '-50 75%'
+
Flag to notify the ownerCt Component on afterLayout of a change
+Flag to notify the ownerCt Component on afterLayout of a change
+Flag to notify the ownerCt Container on afterLayout of a change
+Flag to notify the ownerCt Container on afterLayout of a change
+default anchor for all child container items applied if no anchor or specific width is set on the child item. Defaults to '100%'.
+An optional extra CSS class that will be added to the container. This can be useful for adding +customized styles to the container or any of its children using standard CSS rules. See +Ext.Component.ctCls also.
+ + + +Returns an array of child components either for a render phase (Performed in the beforeLayout method of the layout's +base class), or the layout phase (onLayout).
+ +of child components
+Returns the element into which rendering must take place. Defaults to the owner Container's Ext.AbstractComponent.targetEl.
+ + +May be overridden in layout managers which implement an inner element.
+