I’d like to iterate over my kanban board and check the number of cards in each list, I got as far as listing each kanbanlist but cannot find more api info on that, please help?
$$("mykanban").eachList(function(list,status){
if (list) {
//need a count of the cards in the list
//also, how to iterate the cards in this list
}
});
If I do that my list.count() is always zero. I think it is because I use a url to load my data and the cards are not populated when the script runs?
What would be the best event to use for your code above when using url loading?