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
in ExtJS 4.1 you can add
single: true
to your event, and it will be fired only once..