formPanel中一个numberfield,我在通过this能得到numberfield,即this指向的就是这个numberfield,
我怎样通过numberfield得到它的父控件formPanel?
因为我想操作fromPanel中其他的字段。
Extjs 如何得到numberfield的父控件?
- 写回答
- 好问题 0 提建议
- 关注问题
- 邀请回答
-
2条回答 默认 最新
iteye_10013 2009-09-02 13:31关注如果你的numberfield不是直接放在formpanel的,如嵌套了fieldset
那就用下面的2种方法:[b]findParentBy/b : Ext.Container
Find a container above this component at any level by a custom function. If the passed function returns true, the container will be returned.
Parameters:
fn : Function
The custom function to call with the arguments (container, this component).
Returns:
Ext.Container
The first Container for which the custom function returns true
Component[b]findParentByType/b : Ext.Container
Find a container above this component at any level by xtype or class
Parameters:
xtype : String/Class
The xtype string for a component, or the class of the component directly
Returns:
Ext.Container
The first Container which matches the given xtype or class本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报