Smart UI Components & Libraries – Grid, Scheduler, Gantt, Kanban for Angular, React, Next.js, Vue, Blazor, JavaScript › Forums › Kanban › Kanban column scrollbar still showing after clearing data source to null array › Reply To: Kanban column scrollbar still showing after clearing data source to null array
June 28, 2021 at 3:25 pm
#101951
Member
To me this looks like a bug…
In my code I am assigning a new array of objects directly to the ‘data source’ property.
Like…
<smart-kanban #kanban class="task-smart-kanban" id="kanban"
[collapsible]="collapseColumns"
[columns]="columns$ | async"
[dataSource]="specialTasks$ | async"
[taskDue]="true"
[formatStringDate]="'dd MMM yyyy'"
[taskUserIcon]="false"
[taskActions]="true"
(onDragEnd)="onDragEnd($event)"
(onChange)="onChange($event)"
>
</smart-kanban>