如何向ExtJS处理程序添加其他参数?

时间:2009-03-27 15:59:30

标签: javascript extjs handler

我正在使用ExtJS框架,我有以下处理程序,它只用作按钮的处理程序:

var myButtonHandler = function(button, event){
   //code goes here
};

我的按钮定义如下:

var myButton = new Ext.Button({
       id : 'myButton',
       renderTo : 'mybutton',
       text : 'Save',
       handler : myButtonHandler,
       scope : this
    });

如您所见,处理程序接收预期的“按钮”和“事件”。但是,我想将一些额外的信息传递给我的处理程序。我该怎么做?

4 个答案:

答案 0 :(得分:9)

我实际上会使用Exts createDelegate prototype。

var appendBooleanOrInsertionIndex = 0; // Inserts the variables into the front of the function.
    appendBooleanOrInsertionIndex = true; // Appends the variables to the end of the arguments

var myButton = new Ext.Button({
   id : 'myButton',
   renderTo : 'mybutton',
   text : 'Save',
   handler : myButtonHandler.createDelegate(this, [param1, param2], appendBooleanOrInsertionIndex),
   scope : this
});

答案 1 :(得分:5)

你可以像布拉德利建议的那样使用一个好的解决方案。这是一个例子。 其中repeatsStore - 它是我想要传递给按钮处理程序的附加参数。

Ext.create('Ext.panel.Panel', {
    name: 'panelBtn',
    layout: 'hbox',
    border: 0,
    items:[
        {xtype: 'button', text: 'Add', name:'addBtn',
         handler : Ext.bind(this.addBtnHandler, this, repeatsStore, true)
        }
    ]
});

你的处理程序应该有三个参数 - 前两个是标准的,最后一个是你的。

addBtnHandler:function(button, event, repeatsStore)
{
}

答案 2 :(得分:4)

在Ext JS 4中:

Ext.bind(myButtonHandler, this, [params array], true);

答案 3 :(得分:3)

我不知道你想要传递什么,但使用包装器可能有所帮助:

var myButtonHandler = function (button, event, additionalData){
   //code goes here
};

var myButton = new Ext.Button({
  id : 'myButton',
  renderTo : 'mybutton',
  text : 'Save',
  handler : handlerWrapper,
  scope : this
});

var handlerWrapper = function (button, event){
  // Fetch additional data
  var additionalData = "whatever";
  myButtonHandler(button, event, additionalData);
};