在我的Tapestry页面中,当我调用验证方法时,我想要更新一个区域。这可能吗?只有在调用事件时才能更新区域吗?我可以创建一个事件并将其捕获到允许我更新区域的同一个类中吗?
我认为这可能会奏效,但事实并非......
void onValidateFromIssuingOfficerTextField(Long forename) throws ValidationException {
if (!forename=null) {
updateZone();
throw new ValidationException("You must supply a Forename");
}
}
Object updateZone(){
return myZone.getBody()
}
答案 0 :(得分:1)