Hi,
In our application we override the default editing component for Date
types to be the DateTimeEditor from t5-components (why is that one not
the default. It is so much nicer?).
AppModule.java
public static void contributeBeanBlockSource(
Configuration<BeanBlockContribution>
configuration)
{
configuration.add(new BeanBlockContribution("date",
"AppPropertyEditBlocks", "date", true));
}
Now it sometimes happens that dates are still rendered with the
T5_Default DateField editor. Re-starting the application most often
solves this so that my contributed renderer is used again.
Is this some kind of timing issue in T5.0.15 with the contributions?
Thanks
Moritz