例:
disclose: function (list, record, node, index, event) {
Ext.Msg.confirm('Delete Requirement', 'Are you sure?', function (id, value) {
if (id === 'yes') {
console.log('confirmed');
// no access to list, record, node, ... here, why?
}
}, this);
event.stopEvent();
}
確認メッセージ ハンドラー内のリストおよびレコード変数にアクセスするにはどうすればよいですか?