aurelia-v-grid / vGrid

Aurelia-v-grid - npm source
MIT License
49 stars 10 forks source link

Editing cell and locked columns #14

Closed vegarringdal closed 8 years ago

vegarringdal commented 8 years ago

Editing cells generates bug:

How to reproduce: -set locked columns to 2, -scroll right, -edit a cell (double click into it) -set locked column to 0

Now that row is out of sync

vegarringdal commented 8 years ago

Bug is this line

https://github.com/vegarringdal/vGrid/blob/dev-branch/vGrid/v-grid.js#L234

this.gridContext.ctx.updateRow(this.filterRow);

it needs to be true

this.gridContext.ctx.updateRow(this.filterRow, true);

Ill update it later today