所有控件可谓空,回调函数里判断
var gh=globalForm.getWidgetByName("GH").getValue();
var pwd=globalForm.getWidgetByName("PWD").getValue();
var lgh=globalForm.getWidgetByName("labelGH").getValue();
var lpwd=globalForm.getWidgetByName("labelPWD").getValue();
var shop=globalForm.getWidgetByName("SHOP").getValue();
var lshop=globalForm.getWidgetByName("labelSHOP").getValue();
//alert(gh);
//alert(pwd);
//alert(lgh);
//alert(lpwd);
if(shop.length==0){
FR.Msg.alert("请选择所在门店!");
}
else if(gh.length==0||pwd.length==0){
FR.Msg.alert("请输入账号密码!");
}
else if(shop!=lshop){
FR.Msg.alert("所选门店与档案信息不符!");
}
else if(gh==lgh&&pwd==lpwd){
FR.doHyperlinkByGet({url:'${servletURL}?viewlet=门店调拨/1.调拨首页.frm',title:'门店调拨',para:{SHOP:lshop,GH:lgh}});
}else{
FR.Msg.alert("账号密码错误!");
}
然后,提交事件里对所有不能为空的控件设置提交条件