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.
我正在使用“Ext.view.ViewView”作为菜单。我们可以通过箭头键选择菜单项作为 extjs“dataview”中的默认功能。但我只需要通过单击来选择菜单项。
有什么方法可以只为单击事件启用 selectionChange。
我知道这有点旧但有同样的问题并通过在我的数据视图中指定“selModel”配置来解决
selModel: { enableKeyNav: false }
enableKeyNav
在 ExtJS 4.1 你可以添加
single: true
到你的事件,它只会被触发一次..