以编程方式创建的 Dojo 按钮 - 范围问题

发布于 2024-10-20 02:36:53 字数 603 浏览 1 评论 0原文

各位, 我以编程方式创建了一个新的 Dojo 按钮。我正在我的一个自定义道场课程中这样做。创建按钮时,我定义了一个 onClick 方法,单击按钮时应调用该方法。该方法是该类的一部分。我无法调用该方法,因为单击按钮时“this”的范围不同。有人可以帮我解决这个问题吗?

dojo.declare("CustomClass",null,{
createCustomButton:function(){
var button = new dijit.form.Button({onClick:function(){
                    removetrack();
                    testDataGrid.filter({status:"COMPLETED"});
                }},"testButton1");
},
removetrack:function(){
//some logic
}
});


var customObj=new CustomClass();
customObj.createCustomButton();

当我单击创建的按钮时,我需要调用 removetrack() 方法。

Dear All,
I've created a new Dojo button programatically. I'm doing that in one of my custom dojo class. While creating the button, I've defined an onClick method which should be called when the button is clicked. This method is part of the class. I'm not able to invoke that method, since the scope of "this" is different when the button is clicked. Can some one please help me to do fix this?

dojo.declare("CustomClass",null,{
createCustomButton:function(){
var button = new dijit.form.Button({onClick:function(){
                    removetrack();
                    testDataGrid.filter({status:"COMPLETED"});
                }},"testButton1");
},
removetrack:function(){
//some logic
}
});


var customObj=new CustomClass();
customObj.createCustomButton();

I need removetrack() method to be called when I click on the Button created.

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

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

发布评论

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

评论(2

一枫情书 2024-10-27 02:36:54

使用 dojo.hitch();

dojo.declare("CustomClass",null,{
    createCustomButton:function(){
        var button = new dijit.form.Button({
            onClick:dojo.hitch(this, function(){
                this.removetrack();
                testDataGrid.filter({status:"COMPLETED"});
            })
        },"testButton1");
    },
    removetrack:function(){
        //some logic
    }
});


var customObj=new CustomClass();
customObj.createCustomButton();

Use dojo.hitch();

dojo.declare("CustomClass",null,{
    createCustomButton:function(){
        var button = new dijit.form.Button({
            onClick:dojo.hitch(this, function(){
                this.removetrack();
                testDataGrid.filter({status:"COMPLETED"});
            })
        },"testButton1");
    },
    removetrack:function(){
        //some logic
    }
});


var customObj=new CustomClass();
customObj.createCustomButton();
空城缀染半城烟沙 2024-10-27 02:36:54

如果您需要紧急修复,我无法采取更好的方法,

var button = new dijit.form.Button({
                    label: "Custom!",
                    onClick:function(){
                    CustomClass().removetrack();
                }},"result");

希望有人能给您更好的选择。

I cannot manage to do better way, in case you need urgent fix

var button = new dijit.form.Button({
                    label: "Custom!",
                    onClick:function(){
                    CustomClass().removetrack();
                }},"result");

Hope someone can give you better option.

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