日期:2014-05-16 浏览次数:20446 次
function ButtonWin(viewUrl) {
windialog = $.dialog({
id : 'window',
title : ' ',
padding : 0,
cache : false,
lock : true,
fix : true
});
var content = null;
$.ajax({
url : viewUrl,
success : function(data) {
windialog.content(data);
}
});
}
function winSave(formId, saveUrl, dataId) {
var roles = $(formId).serializeArray();
$.post(saveUrl, roles, function(data) {
if (data != null) {
if (data.success) {
if (dataId != null && dataId != "undefined") {
$(dataId).datagrid('reload');
}
}
promotdialog(data.msg);
windialog.close();
}
}, "json");
}
var windialog;
function ButtonWin(viewUrl) { windialog = $.dialog({ id : 'window', title : ' ', padding : 0, cache : false, lock : true, fix : true }); var content = null; $.ajax({ url : viewUrl, success : function(data) { windialog.content(data); } }); }
function winSave(formId, saveUrl, dataId) { var roles = $(formId).serializeArray(); $.post(saveUrl, roles, function(data) { if (data != null) { if (data.success) { if (dataId != null&