wishok 2009-09-02 13:23
浏览 275
已采纳

Extjs 如何得到numberfield的父控件?

formPanel中一个numberfield,我在通过this能得到numberfield,即this指向的就是这个numberfield,
我怎样通过numberfield得到它的父控件formPanel?
因为我想操作fromPanel中其他的字段。

  • 写回答

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

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?