ng2-handsontable
ng2-handsontable copied to clipboard
Table does not display when binding to a getter, setter
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?