We have a text input component created as a JSF 2 component that encapsulates both the label and the edit field (h:inputText), and which also takes care of the layout.
Our problem at the moment is to get the validator property of the inputField to be exposed on our composite component. We have the attribute declared on the cc:interface section, but the problem in adding a validator="#{validator}" when declaring the inner h:inputText in the cc:implementation is that when the field is not used it fails during runtime.
I wanted to do this in the same way it is done for h:inputText, without having to register a custom validator.
Is there some known solution for this type of problem? We tried to create a custom tag to be used inside the composite component, but it was over complex and it didn't worked at the end, so I thought in asking to the experts if there is an easy way of doing this.
Note: I want to use a method-binding expression in the validator property of my composite component, just as the original of the h:inputText. Thanks for the help!!