Just a short note that may be of interest.
I was unable to get the ext-bv addon: Required Initialization for labels
working "out of the box".
After modifying
at.gp.web.jsf.extval.beanval.label.interceptor.BeanValidationAwareLabelRendererInterceptor
as follows, it seems to work well now.
protected void initComponent(FacesContext facesContext, UIComponent uiComponent)
{
...
//super.initComponent(facesContext, targetComponent);
ExtValUtils.configureComponentWithMetaData(facesContext,
targetComponent, ExtValUtils.getTransformedMetaData(facesContext,
targetComponent));
...
}
Any thoughts on this change? Is it appropriate?
By the way, my web-app uses JSF 1.2, Facelets, RichFaces (3.3.3), Restfaces,
and Orchestra.
Thanks!
Ben