ng2-handsontable icon indicating copy to clipboard operation
ng2-handsontable copied to clipboard

Table does not display when binding to a getter, setter

Open GrumpyGoslin opened this issue 7 years ago • 0 comments

I have a ViewModel concept which the handsontable binds to. If I bind to the properties as natives, everything is fine. However if I use get and set like so

private _currencyCode : string; get CurrencyCode() : string { return this._currencyCode; } set CurrencyCode(currencyCode : string){ this._currencyCode = currencyCode; }

The the table will not be avaliable.

It does however register that it has a value on the beforeChange event. Am I doing something wrong?

GrumpyGoslin avatar Jul 09 '18 15:07 GrumpyGoslin