Hi guys!!
I’m having a problem…
I do some api calls onInit method (Angular), then I display all this information in the Kanban.
But when i change my “filters” in some dropdowns i want to reload all the information in the Kanban.
I have this at this moment:
loadData() {
this.columns = [];
this.source.localData = [];
this.resources = [];
this.getColumnsApi();
}
In getColumnsApi() method I fill all the data on columns, source.localData and resources (doing new api calls with the correct “filters”)
How can i do it ?
Best Regards!
Pablo.