Ext.MessageBox.confirm= function(title, msg, fn) {
this.show({
title : title,
msg : msg,
buttons:{yes:‘确定‘,no:‘取消‘},
fn : fn,
icon : this.WARNING
});
return this;
}
原文:http://www.cnblogs.com/WorkDay/p/4064312.html