-2
私はExt.Msg関数内でalRec変数の下にアクセスできますが、今はアクセスできません。働いthis.alRec使用カスタム関数内の変数
var alRec = allRecords[i];
prefFlag = true;
Ext.Msg.show({
title:'Error',
msg:"SOME MESSAGE",
buttons: Ext.Msg.OKCANCEL,
animEl: 'wId',
icon: Ext.MessageBox.ERROR,
fn: function(button,alRec) {
if(button=='ok')
this.onApply();
else {
alRec.reject();
return false;
}
},
scope:this
});
、 – prakashkadakol