Re: Validate boolean

2006-06-29 Thread Richard Yee
Use the Boolean wrapper object. -Richard Emmanouil Batsis wrote: Just wondering what people use as a best practice to handle/validate boolean values in form beans: * Do you use boolean or string objects in your form beans? * What do you use instead of @struts.validator type="bo

Re: Validate boolean

2006-06-29 Thread Paul Benedict
I exclusively use strings in my forms. Emmanouil Batsis <[EMAIL PROTECTED]> wrote: Just wondering what people use as a best practice to handle/validate boolean values in form beans: * Do you use boolean or string objects in your form beans? * What do you use instead of @struts.validato

Validate boolean

2006-06-29 Thread Emmanouil Batsis
Just wondering what people use as a best practice to handle/validate boolean values in form beans: * Do you use boolean or string objects in your form beans? * What do you use instead of @struts.validator type="boolean" ? Chee