You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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?
The text was updated successfully, but these errors were encountered:
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?
The text was updated successfully, but these errors were encountered: