X-Git-Url: http://git.ithinksw.org/extjs.git/blobdiff_plain/6746dc89c47ed01b165cc1152533605f97eb8e8d..refs/heads/master:/docs/source/CellModel.html diff --git a/docs/source/CellModel.html b/docs/source/CellModel.html index 8f9ec426..5e4364bc 100644 --- a/docs/source/CellModel.html +++ b/docs/source/CellModel.html @@ -3,8 +3,8 @@
/** * @class Ext.selection.CellModel * @extends Ext.selection.Model - * @private */ Ext.define('Ext.selection.CellModel', { extend: 'Ext.selection.Model', alias: 'selection.cellmodel', requires: ['Ext.util.KeyNav'], - + * @cfg {Boolean} enableKeyNav - * Turns on/off keyboard navigation within the grid. Defaults to true. + * Turns on/off keyboard navigation within the grid. */ enableKeyNav: true, - + /** * @cfg {Boolean} preventWrap * Set this configuration to true to prevent wrapping around of selection as - * a user navigates to the first or last column. Defaults to false. + * a user navigates to the first or last column. */ preventWrap: false, @@ -49,7 +48,7 @@ Ext.define('Ext.selection.CellModel', { * @param {Number} column The column index deselected */ 'deselect', - + /** * @event select * Fired after a cell is selected @@ -60,7 +59,7 @@ Ext.define('Ext.selection.CellModel', { */ 'select' ); - this.callParent(arguments); + this.callParent(arguments); }, bindComponent: function(view) { @@ -83,7 +82,7 @@ Ext.define('Ext.selection.CellModel', { initKeyNav: function(view) { var me = this; - + if (!view.rendered) { view.on('render', Ext.Function.bind(me.initKeyNav, me, [view], 0), me, {single: true}); return; @@ -104,7 +103,7 @@ Ext.define('Ext.selection.CellModel', { scope: me }); }, - + getHeaderCt: function() { return this.primaryView.headerCt; }, @@ -120,11 +119,11 @@ Ext.define('Ext.selection.CellModel', { onKeyLeft: function(e, t) { this.move('left', e); }, - + onKeyRight: function(e, t) { this.move('right', e); }, - + move: function(dir, e) { var me = this, pos = me.primaryView.walkCells(me.getCurrentPosition(), dir, e, me.preventWrap); @@ -140,14 +139,14 @@ Ext.define('Ext.selection.CellModel', { getCurrentPosition: function() { return this.position; }, - + /** * Sets the current position * @param {Object} position The position to set. */ setCurrentPosition: function(pos) { var me = this; - + if (me.position) { me.onCellDeselect(me.position); }