Hi, i’m new to Handsontable and also NGXS. I’m having trouble implementing both together cause by default the state in NGXS are readonly and I have to use their own operators to update my Angular models/data. I can already display data on the table, the problem starts when I try to edit. Since the state is read only it causes an error when Handsontable try to update the table’s data source which is from the state.
So is there a way to override the table’s saving event? Instead of it updating the data source i’ll just update it on my own using state operators? Or any other solution?
Also just wanted to add that in my use-case cloning the object is not an option.
Thanks