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
Join Our Forum
We've retired comments here. Visit our forum for faster technical support, connect with other developers, and share your feedback there.
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.