Hello
I’m setting up an appointment component in a lab webapp and I’m having problems to refresh the appointments in the scheduler component.
The appointments loads from the localstorage. i create a button to trigger the update of the scheduler with the new added data like this:
update: function(){
this.schedules = this.$store.getters.schedules
this.dataAdapter = new jqx.dataAdapter(this.source)
}
But nothing happens. I console log the both variables and I can see the new data in the console but not rendered in the scheduler.
What I’m missing?
Thank you.