X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/c930e9176a5a85509c5b0230e2bff5c22a591432..25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775:/docs/source/CheckboxSelectionModel.html diff --git a/docs/source/CheckboxSelectionModel.html b/docs/source/CheckboxSelectionModel.html index 224f9fed..23d1ff57 100644 --- a/docs/source/CheckboxSelectionModel.html +++ b/docs/source/CheckboxSelectionModel.html @@ -1,11 +1,17 @@ - - - The source code - - - - -
/** + + + The source code + + + + +
/*!
+ * Ext JS Library 3.0.3
+ * Copyright(c) 2006-2009 Ext JS, LLC
+ * licensing@extjs.com
+ * http://www.extjs.com/license
+ */
+
/** * @class Ext.grid.CheckboxSelectionModel * @extends Ext.grid.RowSelectionModel * A custom selection model that renders a column of checkboxes that can be toggled to select or deselect rows. @@ -29,24 +35,24 @@ Ext.grid.CheckboxSelectionModel = Ext.extend(Ext.grid.RowSelectionModel, { * 'Select Rows'), but the automatic check all/none behavior will only work if the * 'x-grid3-hd-checker' class is supplied. */ - header: '
 
', + header : '
 
',
/** * @cfg {Number} width The default width in pixels of the checkbox column (defaults to 20). */ - width: 20, + width : 20,
/** * @cfg {Boolean} sortable true if the checkbox column is sortable (defaults to * false). */ - sortable: false, + sortable : false, // private - menuDisabled:true, - fixed:true, - dataIndex: '', - id: 'checker', + menuDisabled : true, + fixed : true, + dataIndex : '', + id : 'checker', - constructor: function(){ + constructor : function(){ Ext.grid.CheckboxSelectionModel.superclass.constructor.apply(this, arguments); if(this.checkOnly){ @@ -101,6 +107,6 @@ Ext.grid.CheckboxSelectionModel = Ext.extend(Ext.grid.RowSelectionModel, { renderer : function(v, p, record){ return '
 
'; } -});
- +});
+ \ No newline at end of file