eachList

iterates over all lists in Kanban and calls a function for them

void eachList(function func);
funcfunctiona function that will be called for each kanban list

Example

$$("myBoard").eachList(function(list,status){
   if(list){
      list.define("type","edit");
      list.render();
   } 
});

Details

The func parameter takes two arguments:

  • list - (object) KanbanList object
  • status - (string) the list's status
Back to top
If you have not checked yet, be sure to visit site of our main product Webix javascript website framework and page of javascript list product.