<o:converter> basically extends the <f:converter> tag family with the
				possibility to evaluate the value expression in all attributes on a per request basis instead of on a per view
				build time basis. This allows the developer to change the attributes on a per request basis.
				
				When you specify for example the standard <f:convertDateTime> by
				converterId="javax.faces.DateTime", then you'll be able to use all its attribuces such as
				pattern and locale as per its documentation, but then with the possibility to supply
				request based value expressions.
				
<o:converter converterId="javax.faces.DateTime" pattern="#{item.pattern}" locale="#{item.locale}" />
				
			
		| Name | Required | Type | Description | 
|---|---|---|---|
binding | 
							false
						 | javax.el.ValueExpression
(must evaluate to javax.faces.convert.Converter)
					 | A ValueExpression that evaluates to an object that implements the javax.faces.convert.Converter interface. | 
converterId | 
							false
						 | javax.el.ValueExpression
(must evaluate to java.lang.String)
					 | 
				
					Converter identifier of the Converter to be created and registered.
				
			 | 
Output generated by Vdldoc View Declaration Language Documentation Generator.