X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/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 @@ -Sencha Documentation Project
/**
- * @class Ext.toolbar.Separator
+
+
+
+  
+  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
-});
\ No newline at end of file +});
+ +