adding custom converter to custom component ?
Hi,
I have created a custom component in JSF 1.1 that extends HtmlInputText.
The component works as it should. My Problem is that when I apply one of my own custom converts to it, the converter is never invoked ?
<ps:custInputText id="text1" validator="#{pc_Start.validateText1}">
<f:attribute name="fieldReference" value="ref_text1" />
<f:converter converterId="ps.trimAllSpaces" />
</ps:custInputText>
Does anyone know that's wrong ? Maybe it is not possible to to apply custom converters to custom components ?
Thanks in advance.

