The o:compositeConverter allows multiple converters to be chained together.
This converter is available by <o:compositeConverter> tag.
<h:inputText value="#{bean.value}">
<o:compositeConverter converterIds="trimConverter, sanitizeConverter, entityConverter" />
</h:inputText>
The converters are executed in the order they are defined in the converterIds attribute during the getAsObject and in reverse order during the getAsString.
| Info | Value |
|---|---|
| Converter ID | omnifaces.CompositeConverter |
| Handler Class | None |
| Description | None |
| Name | Required | Type | Description |
|---|---|---|---|
converterIds | true | jakarta.el.ValueExpression
(must evaluate to java.lang.String)
| Comma-separated string of converters to compose in given order. |
Output generated by Vdldoc View Declaration Language Documentation Generator.