7

我正在使用 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

4 回答 4

9

我实际上会使用 Exts createDelegate 原型。

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
});
于 2009-05-25T01:00:14.603 回答
5

在 Ext JS 4 中:

Ext.bind(myButtonHandler, this, [params array], true);
于 2011-05-11T22:51:10.787 回答
5

您可以使用 Bradley 建议的好的解决方案。这是一个例子。其中 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)
{
}
于 2012-02-15T18:19:29.863 回答
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);
};
于 2009-03-27T16:03:18.653 回答