teaInfoForm.form.doAction('submit', {
url: 'system/teaManage!readCrsByTeacherAndTerm',
method:'post',
success: function(response) {
var resText = Ext.util.JSON.decode(response.responseText);
if (resText.success) {
Ext.getCmp('csGiven').setValue(resText.msg);
}
},
failure: function() {
Ext.Msg.alert('错误', "查找失败");
},
//form : teaInfoForm,
params: { term: term }
}
详细解决方案
EXT 交付表单 附带参数
热度:248 发布时间:2012-10-20 14:12:47.0
相关解决方案