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.
我很清楚如何在控制器上的 roweditor 上侦听事件,这是通过使用控制配置来查询带有 roweditor 插件的网格,然后触发 roweditor 事件。但我想听的确切事件实际上属于组件(例如文本字段)在该 roweditor 中。我认为该事件不会传递到网格面板。
有没有办法通过使用控制器来实际监听该行编辑器中的字段事件?
我以某种方式成功地从网格行编辑器中的组件监听事件。事实证明,我们不能将这些组件作为网格的子项进行查询。
假设我想在网格行编辑器中获取字段组件,此代码将返回 null
Ext.ComponentQuery.query('grid field[id=test]');
相反,查询该字段,因为它不是该网格的子元素并且它可以工作
Ext.ComponentQuery.query('field[id=test]');