2
Fork 0

[svn r390] jsf and state updates

This commit is contained in:
willemc 2009-12-31 13:51:53 +01:00
parent c1a8402ae8
commit 7ee4809086
64 changed files with 1475 additions and 1086 deletions

View file

@ -38,6 +38,7 @@ import com.idcanet.vasc.core.entry.VascEntryEventListener.VascEventType;
*/
public class EditRowAction extends AbstractVascAction implements RowVascAction {
private static final long serialVersionUID = 1L;
static public final String ACTION_ID = "editRowAction";
protected String getActionId() {
@ -49,9 +50,9 @@ public class EditRowAction extends AbstractVascAction implements RowVascAction {
if (rowObject==null) {
return; // nothing selected
}
entry.getVascFrontendData().setEditCreate(false);
entry.getVascFrontendData().getVascEntryState().setEditCreate(false);
entry.getVascFrontendData().getVascFrontendHelper().fireVascEvent(entry, VascEventType.DATA_SELECT, rowObject);
entry.getVascFrontendData().setEntryDataObject(rowObject);
entry.getVascFrontendData().getVascEntryState().setEntryDataObject(rowObject);
entry.getVascFrontendData().getVascFrontend().renderEdit();
}