Hi, In my AppModule.java, I had contributed code for an Enum class like this:
public static void contributeTranslatorDefaultSource( MappedConfiguration<Class<?>, Translator<?>> configuration) { ... configuration.add(ReleaseType.class, new Translator<ReleaseType>() { public ReleaseType parseClient(String clientValue, Messages messages) throws ValidationException { ... }); Where ReleaseType is a java 1.5 enum I'm using. However, just after updating to the latest snapshot, I'm getting an application exception saying Parameter(s) translate are required for org.apache.tapestry.corelib.components.TextField, but have not been bound. When I navigate to the page in my app where I have a TextField that is populated with values from this enum. Obviously the default behaviour has changed, but I can't seem to figure out what exactly I have to do to get this working again. Any suggestions would be welcome Thanks Denis