table.setWidget(3, 0, saveButton);
initWidget(table);
}
protected boolean doSave() {
BasicInfo info = new BasicInfo();
info.setEditName(txt_name.getValue());
info.setEditContact(txt_contact.getValue());
info.setEditBirthday(txt_birthday.getValue());
info.setEditSex(txt_sex.getValue());
info.setEditPs(txt_ps.getValue());
if (!U.Check(info)) {
return false;
}
doAsync(info);
return true;