var SaveData = function(e) {
this.edit.getForm().submit({
method:'POST',
params:this.edit.getFormParams(),
waitTitle:'连接中...',
waitMsg:'发送数据中...',
url:"<?=site_url('site/magazine/save')?>",
success:function(form, action){
Ext.Msg.alert('保存', '保存信息成功!', function(){EditDialog.hide(EditDialog.animateTarget,function(){DataStore.reload();});});
},
failure:function(form, action){
Ext.Msg.alert('保存', '保存失败!请重试!' + action.response.responseText);
}
});
}