From: Alan Knowles Date: Fri, 8 May 2020 08:43:10 +0000 (+0800) Subject: sync X-Git-Url: http://git.roojs.org/?p=roojs1;a=commitdiff_plain;h=5b1a708cf006e24f8f6eb81a4e9723dad77c31cd;hp=8673c23959602f121d1fb75c6a7ec7a656352897 sync --- diff --git a/docs/src/Roo_grid_Grid.js.html b/docs/src/Roo_grid_Grid.js.html index 351d32c22c..5a50968cd0 100644 --- a/docs/src/Roo_grid_Grid.js.html +++ b/docs/src/Roo_grid_Grid.js.html @@ -522,9 +522,9 @@ pos = this.cm.config.length; //this.cm.config.push(cfg); } pos = Math.max(0,pos); - ar.shift(ar.length); - ar.shift(pos); - this.cm.config.splice.call(ar); + ar.unshift(0); + ar.unshift(pos); + this.cm.config.splice.apply(this.cm.config, ar); @@ -757,4 +757,4 @@ * %0 is replaced with the number of selected rows. * @type String */ -Roo.grid.Grid.prototype.ddText = "{0} selected row{1}"; \ No newline at end of file +Roo.grid.Grid.prototype.ddText = "{0} selected row{1}";