Dale Clements

Results 4 comments of Dale Clements

Ahh. I'm using options because I need to set row headers as well. Clearing options before every update makes the updates actually work. Thanks. `this.options={};` `this.options.rowHeaders = newRowHeaders;` `this.options.colHeaders =...

Hrm. Unfortunately this doesn't work later on when I try to change the headers after a transpose operation. I do ``` let newOptions = this.options; newOptions.colHeaders = this.options.rowHeaders; newOptions.rowHeaders =...

Yes but only in the way that I described above. I had to go to the original non-angular handsontable github page, copy out the handsontable.css file (https://github.com/handsontable/handsontable/blob/master/src/css/handsontable.css), and include it...

@m-henderson Well I've found this issue 5 months after the last comment and figured I'd make the repro myself: https://stackblitz.com/edit/angular-issue-repro2-fjrew5 here you go Just open dev tools and you can...