ExtJs在一个函数体内调用另一个函数体
submitForm:function(){if(this.getForm().isValid()){this.getForm().submit({url:'data/g...
submitForm : function(){
if(this.getForm().isValid()){
this.getForm().submit({
url : 'data/goods/saveGoods.jsp',
method : 'post',
waitTitle : '提示',
waitMsg : '正在保存......',
success : function(form,action){
Ext.Msg.alert('提示','保存成功!');
// 问题:
// 怎么去调用下面的reloadStore函数
},
failure : function(form,action){
Ext.Msg.alert('提示','保存失败!请重试!');
}
});
},
reloadStore : function(){
this.getGoodsStore.reload();
} 展开
if(this.getForm().isValid()){
this.getForm().submit({
url : 'data/goods/saveGoods.jsp',
method : 'post',
waitTitle : '提示',
waitMsg : '正在保存......',
success : function(form,action){
Ext.Msg.alert('提示','保存成功!');
// 问题:
// 怎么去调用下面的reloadStore函数
},
failure : function(form,action){
Ext.Msg.alert('提示','保存失败!请重试!');
}
});
},
reloadStore : function(){
this.getGoodsStore.reload();
} 展开
1个回答
展开全部
var obj = {
submitForm : function() {
if (this.getForm().isValid()) {
this.getForm().submit({
url: 'data/goods/saveGoods.jsp',
method: 'post',
waitTitle: '提示',
waitMsg: '正在保存......',
success: function (form, action) {
Ext.Msg.alert('提示', '保存成功!');
// 问题:
// 怎么去调用下面的reloadStore函数
this.reloadStore();
},
failure: function (form, action) {
Ext.Msg.alert('提示', '保存失败!请重试!');
}
},this); // 注意此处不同
}
},
reloadStore : function(){
this.getGoodsStore.reload();
}
}
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询