Hello
You normally use a FacesConverter in Xpert.ivy like this:
1. Create your converter class in the src folder (it should implement the javax.faces.convert.Converter Interface)
2. Annotate the class with @FacesConverter("MyConverter")
3. then you can use it in your XHTML:
Either like this:
<p:inputText converter="MyConverter"/>
Or like this:
<h:inputText>
<f:converter converterId="MyConverter"></f:converter>
</h:inputText>