X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/25ef3491bd9ae007ff1fc2b0d7943e6eaaccf775..0494b8d9b9bb03ab6c22b34dae81261e3cd7e3e6:/docs/source/RowNumberer.html diff --git a/docs/source/RowNumberer.html b/docs/source/RowNumberer.html index 77902fb1..88da490a 100644 --- a/docs/source/RowNumberer.html +++ b/docs/source/RowNumberer.html @@ -1,15 +1,16 @@ + The source code
/*!
- * Ext JS Library 3.0.3
- * Copyright(c) 2006-2009 Ext JS, LLC
- * licensing@extjs.com
- * http://www.extjs.com/license
+ * Ext JS Library 3.3.1
+ * Copyright(c) 2006-2010 Sencha Inc.
+ * licensing@sencha.com
+ * http://www.sencha.com/license
  */
 
/** * @class Ext.grid.RowNumberer @@ -28,14 +29,7 @@ * @constructor * @param {Object} config The configuration options */ -Ext.grid.RowNumberer = function(config){ - Ext.apply(this, config); - if(this.rowspan){ - this.renderer = this.renderer.createDelegate(this); - } -}; - -Ext.grid.RowNumberer.prototype = { +Ext.grid.RowNumberer = Ext.extend(Object, {
/** * @cfg {String} header Any valid text or HTML fragment to display in the header cell for the row * number column (defaults to ''). @@ -50,9 +44,17 @@ Ext.grid.RowNumberer.prototype = { * @hide */ sortable: false, + + constructor : function(config){ + Ext.apply(this, config); + if(this.rowspan){ + this.renderer = this.renderer.createDelegate(this); + } + }, // private fixed:true, + hideable: false, menuDisabled:true, dataIndex: '', id: 'numberer', @@ -65,6 +67,6 @@ Ext.grid.RowNumberer.prototype = { } return rowIndex+1; } -};
+}); \ No newline at end of file