Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否可以通过使用 Webix 的某些操作使菜单项不可见?也许,通过点击一个按钮 - 有什么想法吗?对于这种情况,我制作了一个基本实现的片段: http ://webix.com/snippet/29018dad
您可以hideItem为按钮设置方法。这是示例:
hideItem
{ view:"button", ... click:function(id){ $$("top_menu").hideItem(3); } }
http://webix.com/snippet/4675566e