X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..HEAD:/docs/source/Separator2.html diff --git a/docs/source/Separator2.html b/docs/source/Separator2.html index 4a637455..e31f7b92 100644 --- a/docs/source/Separator2.html +++ b/docs/source/Separator2.html @@ -1,28 +1,37 @@ -
+ +/** - * @class Ext.toolbar.Separator + + + + +\ No newline at end of file +});The source code + + + + + + +/** + * @class Ext.toolbar.Separator * @extends Ext.toolbar.Item - * A simple class that adds a vertical separator bar between toolbar items - * (css class:<tt>'x-toolbar-separator'</tt>). - * - * {@img Ext.toolbar.Separator/Ext.toolbar.Separator.png Toolbar Separator} - * - * ## Example + * A simple class that adds a vertical separator bar between toolbar items (css class: 'x-toolbar-separator'). * + * @example * Ext.create('Ext.panel.Panel', { * title: 'Toolbar Seperator Example', * width: 300, * height: 200, * tbar : [ * 'Item 1', - * {xtype: 'tbseparator'}, // or '-' + * { xtype: 'tbseparator' }, * 'Item 2' * ], * renderTo: Ext.getBody() - * }); - * - * @constructor - * Creates a new Separator - * @xtype tbseparator + * }); */ Ext.define('Ext.toolbar.Separator', { extend: 'Ext.toolbar.Item', @@ -30,4 +39,6 @@ Ext.define('Ext.toolbar.Separator', { alternateClassName: 'Ext.Toolbar.Separator', baseCls: Ext.baseCSSPrefix + 'toolbar-separator', focusable: false -});