We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f19cdce + e6984ad commit b07df79Copy full SHA for b07df79
src/app/interactions/drag-drop/kanban-sample/kanban-sample.component.ts
@@ -20,6 +20,9 @@ interface IListItem {
20
styleUrls: ['./kanban-sample.component.scss']
21
})
22
export class KanbanSampleComponent implements OnInit {
23
+ @ViewChild('toDo', { read: ElementRef }) public toDo: ElementRef;
24
+ @ViewChild('inProgress', { read: ElementRef }) public inProgress: ElementRef;
25
+ @ViewChild('done', { read: ElementRef }) public done: ElementRef;
26
public toDoList: IListItem[];
27
public inProgressList: IListItem[];
28
public doneList: IListItem[];
0 commit comments