Kanban board is a view based on Layout and DataStore and it supports their methods, properties and events. However, there are two specific methods in Kanban:
Method returns Kanbanlist view that displays an item
var list = $$("myBoard").getOwnerList("task1");
params:
Iterates over all lists in Kanban and calls a function for them
$$("myBoard").eachList(function(list,status){
if(list){
list.define("type","edit");
list.render();
}
});
params: