On 4/11/06, Lindholm, Greg <[EMAIL PROTECTED]> wrote: > > String converters aren't allowed in JSF 1.1, but they are in 1.2. > > Otherwise a converter would be a good choice. > > Not sure what you meant by "String converters aren't allowed" I saw > several examples in books so I wrote one and it works great. > (It's not a true "converter" since it only handles output.)
Sorry. The inability to register a global String converter was a personal pet peeve of mine, and I allowed my annoyance with it to blind me to other possibilities. Global string converters cannot be used, but you are absolutely correct that you could use a per-instance converter like this. You'd never set this up as a global converter, so this is a perfect use case for it. Thank you for pointing this out.

