High-Performance UI Component Library for Enterprise Applications Forums Kanban I’m exploring: Kanban and could use some advice.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #113484
    alex.morris22
    Participant

    Can I use Smart Kanban with a REST API in JavaScript? What are the typical integration steps?

    #113543
    admin
    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

Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.