git.ithinksw.org
/
extjs.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Upgrade to ExtJS 3.2.1 - Released 04/27/2010
[extjs.git]
/
src
/
widgets
/
grid
/
RowNumberer.js
diff --git
a/src/widgets/grid/RowNumberer.js
b/src/widgets/grid/RowNumberer.js
index
b59da82
..
aeaabd2
100644
(file)
--- a/
src/widgets/grid/RowNumberer.js
+++ b/
src/widgets/grid/RowNumberer.js
@@
-1,6
+1,6
@@
/*!
/*!
- * Ext JS Library 3.
0.3
- * Copyright(c) 2006-20
09 Ext JS, LLC
+ * Ext JS Library 3.
2.1
+ * Copyright(c) 2006-20
10 Ext JS, Inc.
* licensing@extjs.com
* http://www.extjs.com/license
*/
* licensing@extjs.com
* http://www.extjs.com/license
*/
@@
-21,14
+21,7
@@
* @constructor
* @param {Object} config The configuration options
*/
* @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 '').
/**
* @cfg {String} header Any valid text or HTML fragment to display in the header cell for the row
* number column (defaults to '').
@@
-43,9
+36,17
@@
Ext.grid.RowNumberer.prototype = {
* @hide
*/
sortable: false,
* @hide
*/
sortable: false,
+
+ constructor : function(config){
+ Ext.apply(this, config);
+ if(this.rowspan){
+ this.renderer = this.renderer.createDelegate(this);
+ }
+ },
// private
fixed:true,
// private
fixed:true,
+ hideable: false,
menuDisabled:true,
dataIndex: '',
id: 'numberer',
menuDisabled:true,
dataIndex: '',
id: 'numberer',
@@
-58,4
+59,4
@@
Ext.grid.RowNumberer.prototype = {
}
return rowIndex+1;
}
}
return rowIndex+1;
}
-};
\ No newline at end of file
+}
)
;
\ No newline at end of file