X-Git-Url: http://git.roojs.org/?p=roojs1;a=blobdiff_plain;f=Roo%2Fgrid%2FGrid.js;h=473270564dea5a88c9437fe5f310c6dc6f03981c;hp=b5474c7aee636df6745fedcb51f414bac559eeea;hb=8673c23959602f121d1fb75c6a7ec7a656352897;hpb=b330f1d28f2fa5112e5f8a72f1ab2d352ec3d41c diff --git a/Roo/grid/Grid.js b/Roo/grid/Grid.js index b5474c7aee..473270564d 100644 --- a/Roo/grid/Grid.js +++ b/Roo/grid/Grid.js @@ -77,7 +77,7 @@ Roo.grid.Grid = function(container, config){ this.dataSource= Roo.factory(this.dataSource, Roo.data); this.ds = this.dataSource; this.ds.xmodule = this.xmodule || false; - this.ds.multiSort = this.multiSort || false; + } @@ -414,14 +414,11 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { */ loadMask : false, /** - * @cfg {Roo.dd.DropTarget} dragTarget An {@link Roo.dd.DragTarget} config + * @cfg {Roo.dd.DropTarget} dropTarget An {@link Roo.dd.DropTarget} config */ dropTarget: false, - /** - * @cfg {Boolean} multiSort enable multi column sorting (sort is based on the order of columns) - */ - multiSort: false, + // private rendered : false, @@ -451,6 +448,9 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { c.on("dblclick", this.onDblClick, this); c.on("contextmenu", this.onContextMenu, this); c.on("keydown", this.onKeyDown, this); + if (Roo.isTouch) { + c.on("touchstart", this.onTouchStart, this); + } this.relayEvents(c, ["mousedown","mouseup","mouseover","mouseout","keypress"]); @@ -475,7 +475,7 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { } if (this.dropTarget && this.dropTarget.xtype) { delete this.dropTarget.xtype; - this.dropTarget = new Ext.dd.DropTarget(this.getView().mainBody, this.dropTarget); + this.dropTarget = new Roo.dd.DropTarget(this.getView().mainBody, this.dropTarget); } @@ -484,12 +484,12 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { return this; }, - /** - * Reconfigures the grid to use a different Store and Column Model. - * The View will be bound to the new objects and refreshed. - * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object - * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object - */ + /** + * Reconfigures the grid to use a different Store and Column Model. + * The View will be bound to the new objects and refreshed. + * @param {Roo.data.Store} dataSource The new {@link Roo.data.Store} object + * @param {Roo.grid.ColumnModel} The new {@link Roo.grid.ColumnModel} object + */ reconfigure : function(dataSource, colModel){ if(this.loadMask){ this.loadMask.destroy(); @@ -501,7 +501,41 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { this.colModel = colModel; this.view.refresh(true); }, - + /** + * addColumns + * Add's a column, default at the end.. + + * @param {int} position to add (default end) + * @param {Array} of objects of column configuration see {@link Roo.grid.ColumnModel} + */ + addColumns : function(pos, ar) + { + + for (var i =0;i< ar.length;i++) { + var cfg = ar[i]; + cfg.id = typeof(cfg.id) == 'undefined' ? Roo.id() : cfg.id; // don't normally use this.. + this.cm.lookup[cfg.id] = cfg; + } + + + if (typeof(pos) == 'undefined' || pos >= this.cm.config.length) { + pos = this.cm.config.length; //this.cm.config.push(cfg); + } + pos = Math.max(0,pos); + ar.unshift(0); + ar.unshift(pos); + this.cm.config.splice.apply(this.cm.config, ar); + + + + this.view.generateRules(this.cm); + this.view.refresh(true); + + }, + + + + // private onKeyDown : function(e){ this.fireEvent("keydown", e); @@ -530,15 +564,47 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { // private processEvent : function(name, e){ - this.fireEvent(name, e); + // does this fire select??? + //Roo.log('grid:processEvent ' + name); + + if (name != 'touchstart' ) { + this.fireEvent(name, e); + } + var t = e.getTarget(); var v = this.view; var header = v.findHeaderIndex(t); if(header !== false){ - this.fireEvent("header" + name, this, header, e); + var ename = name == 'touchstart' ? 'click' : name; + + this.fireEvent("header" + ename, this, header, e); }else{ var row = v.findRowIndex(t); var cell = v.findCellIndex(t); + if (name == 'touchstart') { + // first touch is always a click. + // hopefull this happens after selection is updated.? + name = false; + + if (typeof(this.selModel.getSelectedCell) != 'undefined') { + var cs = this.selModel.getSelectedCell(); + if (row == cs[0] && cell == cs[1]){ + name = 'dblclick'; + } + } + if (typeof(this.selModel.getSelections) != 'undefined') { + var cs = this.selModel.getSelections(); + var ds = this.dataSource; + if (cs.length == 1 && ds.getAt(row) == cs[0]){ + name = 'dblclick'; + } + } + if (!name) { + return; + } + } + + if(row !== false){ this.fireEvent("row" + name, this, row, e); if(cell !== false){ @@ -552,6 +618,10 @@ Roo.extend(Roo.grid.Grid, Roo.util.Observable, { onClick : function(e){ this.processEvent("click", e); }, + // private + onTouchStart : function(e){ + this.processEvent("touchstart", e); + }, // private onContextMenu : function(e, t){