High-Performance UI Component Library for Enterprise Applications › Forums › Kanban › I’m exploring: Kanban and could use some advice. › Reply To: I’m exploring: Kanban and could use some advice.
April 28, 2026 at 2:25 pm
#113543
Keymaster
Hi,
It’s possible, you can try something like this:
async function loadTasks() {
const res = await fetch('/api/tasks');
const tasks = await res.json();
kanban.dataSource = tasks;
}
Regards,
Markov