Get selected user after change

Hi,

I am using kanban.

Is there a way to know when user is changed after click in users list, in avatar ?

I found onAvatarClick event but I it’s not work after user is changed.

Thanks.

Hello @Evandro,
As a solution, you can use getUserList and attach onItemClick event to it:

let userList = $$("myBoard").getUserList();
userList.attachEvent("onItemClick", function(id, e, node){
  webix.message("User avatar changed to "+id );
});

Please take a look at the snippet:
https://snippet.webix.com/fkr46epn

Hi @annazankevich ,

thanks a lot.