Enterprise Data Grid & UI Components for Angular, React & Blazor Forums Kanban Can anyone recommend tools for debugging: Kanban?

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #113446
    michaelsanders
    Participant

    Can I use slots or templates to render content inside Smart Kanban?

    #113472
    admin
    Keymaster

    Hi,

    Smart.Kanban uses templates, not standard <slot> elements.

    You can define custom rendering via the template property (or column/task templates), which gives you full control over how cards look.

    Example: Custom card template

    kanban.taskTemplate = function (task) {
      return 

    ${task.text}

    Owner: ${task.userId || ‘Unassigned’}

    Priority: ${task.priority || ‘Normal’}

    `;
    };`

    Best regards,
    Markov

    Smart UI Team
    https://www.htmlelements.com/

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