我的问题类似于Extjs 4 How to get id of parent Component?。
但我正在寻找解决方案。由于问题中给出的答案似乎没有用处
在我的情况下,我的每个字段集中都有按钮,我也动态创建这些字段集,其中包含按钮。
现在,在按钮的点击事件中,我想获得相应的字段集ID
答案 0 :(得分:5)
此代码将返回父字段集:
button.up("[xtype='fieldset']")
答案 1 :(得分:1)
马赫什,
在我们的例子中,问题是,它没有扩展Ext.form.FieldSet。 所以看看Extjs 4 How to get id of parent Component?
As Zango said, **button.up("[xtype='fieldset']")** will work for you.
谢谢, KUNAL