True, you'll need to copy these methods into your Converter (or base converter) class.
I did the same thing in Tomahawk for validators, and that's the best model to use as an example. org.apache.myfaces.validator.ValidatorBase http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/core/src/main/java/org/apache/myfaces/validator/ValidatorBase.java?view=markup Actually, you're going to want almost everything in that class and everything that's in there is probably just as useful for converters. I'd make your converter inherit from or delegate to this class. Or you can simply copy everything in there to your converter. You probably don't need the ability to customize the converter messages yet, but you might want that down the road. I know we'd want that in the Tomahawk version at some point. On 6/12/07, Daniel Herb <[EMAIL PROTECTED]> wrote:
Hmm... I ran into troubles again. The method getValueBinding(...) is not available in the converter-class. So I can't get the expression-strings. An alternative would be to save the expressions in the converter but I think that would be only a quick-and-dirty solution. Do you have an other idea? -- View this message in context: http://www.nabble.com/Possible-bug-in-the-columns-tag-with-the-convertDateTime-tag-tf3845423.html#a11079062 Sent from the My Faces - Dev mailing list archive at Nabble.com.
