重写Ext.MessageBox.confirm中文按钮名称

function show(obj) {
	Ext.MessageBox.confirm = function(title, msg, fn) {
		this.show({
					title : title,
					msg : msg,
					value : obj.value,
					buttons : {
						yes : '确定',
						no : '取消'
					},
					multiline : true,
					width : 300,
					fn : fn
				});
		return this;
	}
	Ext.MessageBox.confirm('扣分原因', '请输入扣分原因', function(btn, text) {
				if (btn == 'yes') {
					obj.value = text;
				}
			});
}

你可能感兴趣的:(ext)