You can find the full source code for this website in the Seam package in the directory /examples/wiki. It is licensed under the LGPL.
| Online: | 8 Members of 4089 |
| Forum: Seam Users |
02. Jul 2008, 20:24 CET | Link |
Hi again, I try set to null an attribute in PAGE context, but I can't. I can set to null an attribute in CONVERSATION context or SESSION context. All request are the same page.
Why?
This is my code:
@In(required = false,scope=ScopeType.PAGE)
@Out(required = false,scope=ScopeType.PAGE)
private Motivo motivo;
public void guardar() {
this.getDAO().merge(motivo);
this.motivo = null;
}