On 5/18/06, Niels Beekman <[EMAIL PROTECTED]> wrote:
I think your typehandler.valueOf() implementation is incorrect. The string passed to it is the string you specified in the attribute "nullValue". You should do something like:public Object valueOf(String s) { return "Y".equals(s); }
Thanks Niels!!! That was the problem. I would never thought to check that. Thanks. -- Rick
