1. 程式人生 > >extjs 最簡單的 提交表單方法

extjs 最簡單的 提交表單方法



var form = loginform.getForm().submit(
{
   waitTitle : '請稍候',
      waitMsg : '正在登入......',
success : function() {
//alert("login success");
window.location = path;

},
failure : function() {
Ext.MessageBox.alert('資訊', '登陸失敗,請與管理員聯絡!');
}
}
);