/// 查看页面,跳出一个新的添加窗口
function AddMessage() {
$.ligerDialog.open({
url: UrlAddMessage, height: , width: , title: "AddMsg", isHidden: true
});
}
/// 添加页面,保存后,刷新查看页面的数据
$.post(UrlAddMessge, { Title : Title,Users : Users, Content : Content},
function (data) {
if (data.result) {
$.ligerDialog.success("保存成功!");
window.parent.$("#maingrid").ligerGrid().reload();
} else {
$.ligerDialog.error(data.msg);
}
}); //post