X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/7a654f8d43fdb43d78b63d90528bed6e86b608cc..f562e4c6e5fac7bcb445985b99acbea4d706e6f0:/docs/source/CheckItem.html diff --git a/docs/source/CheckItem.html b/docs/source/CheckItem.html index 4838e0b1..7615e878 100644 --- a/docs/source/CheckItem.html +++ b/docs/source/CheckItem.html @@ -1,67 +1,71 @@ -
+ +\ No newline at end of file + * @class Ext.menu.CheckItem - * @extends Ext.menu.Item - -A menu item that contains a togglable checkbox by default, but that can also be a part of a radio group. -{@img Ext.menu.CheckItem/Ext.menu.CheckItem.png Ext.menu.CheckItem component} -__Example Usage__ - Ext.create('Ext.menu.Menu', { - width: 100, - height: 110, - floating: false, // usually you want this set to True (default) - renderTo: Ext.getBody(), // usually rendered by it's containing component - items: [{ - xtype: 'menucheckitem', - text: 'select all' - },{ - xtype: 'menucheckitem', - text: 'select specific', - },{ - iconCls: 'add16', - text: 'icon item' - },{ - text: 'regular item' - }] - }); - - * @xtype menucheckitem - * @markdown - * @constructor - * @param {Object} config The config object + + + + +The source code + + + + + + +* A menu item that contains a togglable checkbox by default, but that can also be a part of a radio group. + * + * @example + * Ext.create('Ext.menu.Menu', { + * width: 100, + * height: 110, + * floating: false, // usually you want this set to True (default) + * renderTo: Ext.getBody(), // usually rendered by it's containing component + * items: [{ + * xtype: 'menucheckitem', + * text: 'select all' + * },{ + * xtype: 'menucheckitem', + * text: 'select specific', + * },{ + * iconCls: 'add16', + * text: 'icon item' + * },{ + * text: 'regular item' + * }] + * }); */ - Ext.define('Ext.menu.CheckItem', { extend: 'Ext.menu.Item', alias: 'widget.menucheckitem', -