X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/d41dc04ad17d1d9125fb2cf72db2b4782dbe3a8c..6b044c28b5f26fb99c86c237ffad19741c0f7f3d:/docs/output/Ext.layout.TableLayout.html diff --git a/docs/output/Ext.layout.TableLayout.html b/docs/output/Ext.layout.TableLayout.html index 55e8463a..9b437c01 100644 --- a/docs/output/Ext.layout.TableLayout.html +++ b/docs/output/Ext.layout.TableLayout.html @@ -1,30 +1,11 @@ -
ContainerLayout - TableLayout
Package: | Ext.layout |
Defined In: | TableLayout.js |
Class: | TableLayout |
Extends: | ContainerLayout |
This layout allows you to easily render content into an HTML table. The total number of columns can be +
ContainerLayout + TableLayout
Package: | Ext.layout |
Defined In: | TableLayout.js |
Class: | TableLayout |
Extends: | ContainerLayout |
This layout allows you to easily render content into an HTML table. The total number of columns can be specified, and rowspan and colspan can be used to create complex layouts within the table. -This class is intended to be extended or created via the layout:'table' Ext.Container.layout config, +This class is intended to be extended or created via the layout:'table' Ext.Container.layout config, and should generally not need to be created directly via the new keyword.
Note that when creating a layout via config, the layout-specific config properties must be passed in via -the Ext.Container.layoutConfig object which will then be applied internally to the layout. In the -case of TableLayout, the only valid layout config property is columns. However, the items added to a +the Ext.Container.layoutConfig object which will then be applied internally to the layout. In the +case of TableLayout, the only valid layout config property is columns. However, the items added to a TableLayout can supply the following table-specific config properties:
Config Options | -Defined By | -|
---|---|---|
- |
-
- columns : Number
-
- The total number of columns to create in the table for this layout. If not specified, all panels added to this layout...
-
- The total number of columns to create in the table for this layout. If not specified, all panels added to this layout will be rendered into a single row using a column per panel.
- |
- TableLayout | -
- |
-
- extraCls : String
-
- An optional extra CSS class that will be added to the container (defaults to ''). This can be useful for adding custo...
-
- An optional extra CSS class that will be added to the container (defaults to ''). This can be useful for adding customized styles to the container or any of its children using standard CSS rules.
- |
- ContainerLayout | -
- |
-
- renderHidden : Boolean
- True to hide each contained item on render (defaults to false).
- |
- ContainerLayout | -
Config Options | Defined By | |
---|---|---|
columns : Number The total number of columns to create in the table for this layout. If not specified, all Components added to
+this l... The total number of columns to create in the table for this layout. If not specified, all Components added to
+this layout will be rendered into a single row using one column per Component. | TableLayout | |
extraCls : String An optional extra CSS class that will be added to the container. This can be useful for adding
+customized styles to t... 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. +Note: extraCls defaults to '' except for the following classes +which assign a value by default: +
+ | ContainerLayout | |
renderHidden : Boolean True to hide each contained item on render (defaults to false). | ContainerLayout | |
tableAttrs : Object An object containing properties which are added to the DomHelper specification
+used to create the layout's <table&... An object containing properties which are added to the DomHelper specification +used to create the layout's <table> element. Example:
| TableLayout |
Property | Defined By | |
---|---|---|
fieldTpl : Ext.Template The Ext.Template used by Field rendering layout classes (such as
+Ext.layout.FormLayout) to create the DOM structure o... The Ext.Template used by Field rendering layout classes (such as
+Ext.layout.FormLayout) to create the DOM structure of a fully wrapped,
+labeled and styled form Field. A default Template is supplied, but this may be
+overriden to create custom field structures. The template processes values returned from
+Ext.layout.FormLayout.getTemplateArgs. | ContainerLayout | |
if : Object This monitorResize flag will be renamed soon as to avoid confusion
+with the Container version which hooks onWindowRes... This monitorResize flag will be renamed soon as to avoid confusion
+with the Container version which hooks onWindowResize to doLayout
+monitorResize flag in this context attaches the resize event between
+a container and it's layout | ContainerLayout |
Method | Defined By | |
---|---|---|
parseMargins( Number|String v )
+ :
+ ObjectParses a number or string representing margin sizes into an object. Supports CSS-style margin declarations
+(e.g. 10, ... Parses a number or string representing margin sizes into an object. Supports CSS-style margin declarations
+(e.g. 10, "10", "10 10", "10 10 10" and "10 10 10 10" are all valid options and would return the same result) Parameters:
| ContainerLayout |