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.
如何使用现代工具包在 ESC 键上关闭和 Ext JS 对话框?
对话框不会按 ESC 键关闭。
脚步:
1 - 打开后按ESC键
结果预期对话框应该关闭
测试用例 小提琴
似乎是一个焦点问题。
默认情况下,对话框是不可聚焦的,因此在您添加可聚焦项目或使其可自聚焦之前,键盘输入不会生效。
要完成,您还应该使用 tabIndex 作为 -1 来完成任务。
解决了在对话框上添加 2 个配置的问题。
focusable: true, tabIndex: -1
感谢 Guilherme Portela 的帮助