X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/src/container/AbstractContainer.js diff --git a/src/container/AbstractContainer.js b/src/container/AbstractContainer.js index 6d3b6985..40136666 100644 --- a/src/container/AbstractContainer.js +++ b/src/container/AbstractContainer.js @@ -15,8 +15,8 @@ If you are unsure which license is appropriate for your use, please contact the /** * @class Ext.container.AbstractContainer * @extends Ext.Component - *

An abstract base class which provides shared methods for Containers across the Sencha product line.

- * Please refer to sub class's documentation + * An abstract base class which provides shared methods for Containers across the Sencha product line. + * @private */ Ext.define('Ext.container.AbstractContainer', { @@ -33,10 +33,10 @@ Ext.define('Ext.container.AbstractContainer', { /* End Definitions */ /** * @cfg {String/Object} layout - *

*Important: In order for child items to be correctly sized and + *

Important: In order for child items to be correctly sized and * positioned, typically a layout manager must be specified through * the layout configuration option.

- *

The sizing and positioning of child {@link #items} is the responsibility of + *

The sizing and positioning of child {@link #items} is the responsibility of * the Container's layout manager which creates and manages the type of layout * you have in mind. For example:

*

If the {@link #layout} configuration is not explicitly specified for @@ -44,9 +44,8 @@ Ext.define('Ext.container.AbstractContainer', { * {@link Ext.layout.container.Auto default layout manager} will be used * which does nothing but render child components sequentially into the * Container (no sizing or positioning will be performed in this situation).

- *

layout may be specified as either as an Object or - * as a String: