Start up blank swimlanes minimized.

Hi,

I have many swimlanes without cards, and I want to initialize the Kanban with them minimized. I know that there is an option to not show swimlanes without cards, but I want all of them to be visible, to allow me to use the drag-n-drop between the swimlanes, but to show me minimized those without cards.

Thanks,
Mauricio.

1 Reply 1 reply marked as answer

RV Ravikumar Venkatesan Syncfusion Team January 20, 2021 04:23 PM UTC

Hi Mauricio, 
  
Greetings from Syncfusion support. 
  
We have validated your requirement at our end and achieved it by defining the cards without having the Status field that binds with the Kanban keyField property. We have prepared a sample for your reference which can be available below. 
  
  
[app.component.html] 
<ejs-kanban #kanbanObj keyField="Status"> 
</ejs-kanban> 
  
[data.ts] 
export let cardData: Object[] = [ 
  { 
    Id: "Task 1", 
    Title: "Task - 29001", 
    Status: "Open", 
    Summary: "Analyze customer requirements.", 
    Priority: "High", 
    Tags: "Bug, Release Bug", 
    RankId: 1, 
    Assignee: "Nancy Davloio" 
  }, 
  // The below data doesn't contain the Status field 
  { 
    Id: "Task 2", 
    Title: "Task - 29002", 
    Summary: "Add responsive support to applicaton", 
    Priority: "Low", 
    Tags: "Story, Kanban", 
    RankId: 1, 
    Assignee: "Andrew Fuller" 
  }, 
] 
  
Kindly try the above sample and get back to us if you need any further assistance. 
  
  
Regards, 
Ravikumar Venkatesan

Marked as answer
Loader.
Up arrow icon