X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..3789b528d8dd8aad4558e38e22d775bcab1cbd36:/docs/source/CheckItem.html diff --git a/docs/source/CheckItem.html b/docs/source/CheckItem.html index 4838e0b1..c44a18f4 100644 --- a/docs/source/CheckItem.html +++ b/docs/source/CheckItem.html @@ -1,4 +1,21 @@ -Sencha Documentation Project
/**
+
+
+
+  
+  The source code
+  
+  
+  
+  
+
+
+  
/**
  * @class Ext.menu.CheckItem
  * @extends Ext.menu.Item
 
@@ -34,21 +51,21 @@ Ext.define('Ext.menu.CheckItem', {
     extend: 'Ext.menu.Item',
     alias: 'widget.menucheckitem',
 
-    /**
+    /**
      * @cfg {String} checkedCls
      * The CSS class used by {@link #cls} to show the checked state.
      * Defaults to `Ext.baseCSSPrefix + 'menu-item-checked'`.
      * @markdown
      */
     checkedCls: Ext.baseCSSPrefix + 'menu-item-checked',
-    /**
+    /**
      * @cfg {String} uncheckedCls
      * The CSS class used by {@link #cls} to show the unchecked state.
      * Defaults to `Ext.baseCSSPrefix + 'menu-item-unchecked'`.
      * @markdown
      */
     uncheckedCls: Ext.baseCSSPrefix + 'menu-item-unchecked',
-    /**
+    /**
      * @cfg {String} groupCls
      * The CSS class applied to this item's icon image to denote being a part of a radio group.
      * Defaults to `Ext.baseCSSClass + 'menu-group-icon'`.
@@ -57,7 +74,7 @@ Ext.define('Ext.menu.CheckItem', {
      */
     groupCls: Ext.baseCSSPrefix + 'menu-group-icon',
 
-    /**
+    /**
      * @cfg {Boolean} hideOnClick
      * Whether to not to hide the owning menu when this item is clicked.
      * Defaults to `false` for checkbox items, and to `true` for radio group items.
@@ -75,7 +92,7 @@ Ext.define('Ext.menu.CheckItem', {
     initComponent: function() {
         var me = this;
         me.addEvents(
-            /**
+            /**
              * @event beforecheckchange
              * Fires before a change event. Return false to cancel.
              * @param {Ext.menu.CheckItem} this
@@ -83,7 +100,7 @@ Ext.define('Ext.menu.CheckItem', {
              */
             'beforecheckchange',
 
-            /**
+            /**
              * @event checkchange
              * Fires after a change event.
              * @param {Ext.menu.CheckItem} this
@@ -106,7 +123,7 @@ Ext.define('Ext.menu.CheckItem', {
         }
     },
 
-    /**
+    /**
      * Disables just the checkbox functionality of this menu Item. If this menu item has a submenu, that submenu
      * will still be accessible
      */
@@ -117,7 +134,7 @@ Ext.define('Ext.menu.CheckItem', {
         me.checkChangeDisabled = true;
     },
 
-    /**
+    /**
      * Reenables the checkbox functionality of this menu item after having been disabled by {@link #disableCheckChange}
      */
     enableCheckChange: function() {
@@ -140,7 +157,7 @@ Ext.define('Ext.menu.CheckItem', {
         this.callParent(arguments);
     },
 
-    /**
+    /**
      * Sets the checked state of the item
      * @param {Boolean} checked True to check, false to uncheck
      * @param {Boolean} suppressEvents (optional) True to prevent firing the checkchange events. Defaults to `false`.
@@ -161,4 +178,6 @@ Ext.define('Ext.menu.CheckItem', {
         }
     }
 });
-
\ No newline at end of file +
+ +