如何从 extjs splitbutton 菜单访问工具栏?

发布于 2024-11-30 04:18:23 字数 929 浏览 1 评论 0原文

我有一个像这样的工具栏

  tbar: [{
            xtype        : 'textfield',
            name        : 'number',
            itemId        : 'number',
            listeners    : {
                change    : function(t,n){
                        console.log(this.up('toolbar').down('#splitbut')) // i can access splitbutton from here
                }
            }                                                          
        },{
            xtype    : 'splitbutton',
            text    : 'Report',
            disabled: true,
            itemId    : 'splitbut',
            menu    : [{
                    text    : 'details',
                    handler    : function() {
                        // how to access #number text field  from here
                    }
                }

,我在菜单按钮处理程序中尝试了 this.up('menu').up('toolbar') ,但我收到未定义的消息,我尝试

任何想法如何从菜单按钮访问 #number 文本字段?

问候

I have a toolbar like this

  tbar: [{
            xtype        : 'textfield',
            name        : 'number',
            itemId        : 'number',
            listeners    : {
                change    : function(t,n){
                        console.log(this.up('toolbar').down('#splitbut')) // i can access splitbutton from here
                }
            }                                                          
        },{
            xtype    : 'splitbutton',
            text    : 'Report',
            disabled: true,
            itemId    : 'splitbut',
            menu    : [{
                    text    : 'details',
                    handler    : function() {
                        // how to access #number text field  from here
                    }
                }

i tried like this.up('menu').up('toolbar') inside menu button handler but im getting undefined message for each way i try

any idea how to access #number text field from menu button?

Regards

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

习惯成性 2024-12-07 04:18:23

我将分别定义文本字段和拆分按钮,然后以这种方式引用它们。

this.myTextField = new Ext.form.field.Text ({
    name: 'number',
    itemId: 'number',
    listeners: {
        change: function(t,n){
            console.log(this.mySplitButton) 
        }
    }    
this.mySplitButton= new Ext.button.Split ({
    text: 'Report',
    disabled: true,
    itemId: 'splitbut',
    menu: [{
        text: 'details',
        handler: function() {
            console.log(this.myTextField ) 
        }
    }   

I would define the textfield and the splitbutton separately, then reference them that way.

this.myTextField = new Ext.form.field.Text ({
    name: 'number',
    itemId: 'number',
    listeners: {
        change: function(t,n){
            console.log(this.mySplitButton) 
        }
    }    
this.mySplitButton= new Ext.button.Split ({
    text: 'Report',
    disabled: true,
    itemId: 'splitbut',
    menu: [{
        text: 'details',
        handler: function() {
            console.log(this.myTextField ) 
        }
    }   
好久不见√ 2024-12-07 04:18:23

Gihan 您的菜单项不是从具有 up 功能的组件扩展的。尝试将作用域传递给处理函数:

handler: function() {
            console.log(this.myTextField ) 
        },
scope: this or this.mySplitButton

在函数内设置断点并在 firebug 中检查它。那时你就会清楚地看到“这个”指的是什么。另外,如果您打算使用 ExtJS 进行开发,我强烈建议您获取 Firefox 开发人员的 Illuminations - 您会喜欢它的。

Gihan your menu item does not extend from a component that has up function. Try passing in scope to handler function:

handler: function() {
            console.log(this.myTextField ) 
        },
scope: this or this.mySplitButton

set the break point inside the function and inspect it in firebug. you will clearly see what 'this' refers to at that point. Also if you are going to be developing in ExtJS I would strongly recommend you getting Illuminations fro developers for Firefox - you will love it.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文