谁能告诉我如何使用 extjs 中的组合 itemId 在控制器中获取选定的值?
我试过这样:
Ext.getCmp('itemId').getValue(); //this is not working
谢谢
谁能告诉我如何使用 extjs 中的组合 itemId 在控制器中获取选定的值?
我试过这样:
Ext.getCmp('itemId').getValue(); //this is not working
谢谢
请务必阅读文档。getCmp()仅通过 id查找组件。如果要按 itemId 查找组件,请使用ComponentQuery或getComponent()。