Seems like a bug that I need to implement TagHandler. If I omit it this is
the exception I get:

https://gist.github.com/anonymous/5b7204de5e9cc9f65c02

On 13 February 2015 at 10:50, Karl Kildén <karl.kil...@gmail.com> wrote:

> Hello,
>
> I want to create a converter and instead of having f:attributes (need
> many) I want to create my own tag. Using myfaces 2.2.x
>
> I did this:
>
> @FacesConverter("myconverter")
> public class MyConverter extends ConverterHandler implements Converter {
>  public MyConverter(ConverterConfig config) {
> super(config);
> }
>
>
>
> <tag>
>
> <tag-name>myconverter</tag-name>
> <converter>
> <converter-id>myconverter</converter-id>
> <handler-class>se.raindance.mp.NumberConverter</handler-class>
> </converter>
> <attribute>
> <name>minFraction</name>
> <name>maxFraction</name>
> <name>defaultValue</name>
> </attribute>
> </tag>
>
>
> If I remove extends ConverterHandler I get exception that I need to
> implement TagHandler... But all I want is to be able to supply some
> attributes in my facelet. Anyways the problem is that my constructor is
> getting called but not getAsObject nor getAsString...
>
> I also have this:
>
> <context-param>
> <param-name>facelets.LIBRARIES</param-name>
> <param-value>/WEB-INF/my.taglib.xml</param-value>
> </context-param>
>
>
> What am I missing?
>

Reply via email to