これは、IE9 の extjs(4.0.1) でユーザー定義の引数をハンドラー関数に渡す最初の試みです。以下のコードがありますが、それを示すエラーがスローされますSCRIPT438: Object doesn't support property or method 'createDelegate'
。何が間違っているのかわかりません。助けてください。
Js ファイル:
Ext.onReady(function() {
var appendBooleanOrInsertionIndex = 0;
var myButtonHandler = function(item,a, b, arg){
alert(a + " "+ b);
};
var myButton = new Ext.Button({
id : 'myButton',
//renderTo : 'mybutton',
text : 'Save',
handler : myButtonHandler.createDelegate(this, ['Hi', 'Kart'], appendBooleanOrInsertionIndex),
scope : this
});
});