I am using smart kanban with angular 11. I have an array for my datasource as well as for my columns.
When I modify the datasource and the columns, the kanban does not refresh , while on the angular side the data is loaded.
Is there a method to refresh the kanban manually?
For exemple in my html (to test) :
I display :
{{this.swimlanesColumns |json}} => data refreshed correctly
<span class="Y2IQFc" lang="en"><smart-kanban #swimlaneKanban class="kanban" [id]="'kanban-'+i" [collapsible]="collapsible" [dataSource]="getSwimlanesDataSource(i)" [columns]="swimlanesColumns[i]" [taskProgress]="true" [taskDue]="true" (change)="onKanbanChange($event, i)" (onReady)="onKanbanReady($event,i)" (dragEnd)="onKanbanDragEnd($event,i)" (dragStart)="onKanbanDragStart($event,i)" [formatStringDate]="dateFormatForKanban" [taskUserIcon]="false" [allowDrag]="allowDrag"></smart-kanban>
</span>
=> data not refreshed correctly with the same data (swimlanesColumns)
Thank you
This topic was modified 2 years, 3 months ago by T Mmk.
This topic was modified 2 years, 3 months ago by T Mmk.
This topic was modified 2 years, 3 months ago by T Mmk.