webix.ready(function(){
webix.ui({
type:'stackedBar',
rows:[
{
container:"areaA",
view:"menu",
id:'menu',
url:'/ui/menu',
type:{
subsign:true
},
on:{
onMenuItemClick:function(id){
console.log('b')
}
},
onClick: {
"webix_list_item": function (e, id, trg) {
webix.message("Delete row: " + id);
return false; //here it blocks default behavior
}
}
},
{
id:'tabList',
view:'tabview',
container:"tab",
tabbar:{
optionWidth:150,
close:true
},
cells:[
{ header:"default", template:"My Tab 1 "}
]
}
]
});
})
Hi,
we fix include the fix for this issue in the next version. Thank you for the post!