I gave up trying to use the same page for create and edit because it takes more code to use one page than two. My thought would be to do this
@PageActivationContext(create=true) private MyEntity myEntity; This would create the object if you do not pass one in. Then you don't have any backward compatibility problems and you don't have to have any code in the activation context. --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
