Answering my own question, the problem was caused by a version mismatch.
I had a couple of translators and the latest tapestry versions require
these to have a "getType" method.
Adding some extra output in tapestry allowed my to figure out the
problem and fix it.
Anyway, big thanks for the h
:)
I think you injected the field wrongly :)
@inject Field field;
you must declare actual type
@Inject TextField field;
or
@Inject DateField field;
this is however a candidate for a jira issue,
tapestry uses type declaration to determine the component class,
if the component is in temp
Anybody has any ideas what can be causing this exception?
java.lang.AbstractMethodError
Stack trace
*
org.apache.tapestry.internal.services.FieldValidationSupportImpl.toClient(FieldValidationSupportImpl.java:87)
*
org.apache.tapestry.corelib.base.AbstractTextField.begin(Abstract