676869707172737475767778
@Override public void onSelect(SelectEvent event) { if (name.getValue()==null || name.getValue().trim().equals("") || group.getValue() == null) { AlertMessageBox alert=new AlertMessageBox("警告", "必填项不能为空"); alert.show(); }else{ submit(); } } }));
251252253254255256257258
show(null); } protected void showInvalidMessageBox() { new AlertMessageBox(DkMain.i18n().connection_popup_bad_information_popup_title(), DkMain.i18n() .connection_popup_bad_information_popup_correct_fields()).show(); }