Converting a hidden input field to Boolean?

2011-05-01 Thread Christian Grobmeier
Hi, given the following: s:hidden name=myBean.active value=true / and the fact MyBean contains a method with this signature: MyBean.setActive(Boolean value) {} I always receive null for this field in my Action. I guess it is because the conversion does not apply to hidden fields - right? Any

Re: Converting a hidden input field to Boolean?

2011-05-01 Thread Christian Grobmeier
Forget this. I found out that I do not need a setter for MyBean only, I do necessary need a getter. As I found out, getMyBean is always called before setting a property Cheers On Sun, May 1, 2011 at 10:41 AM, Christian Grobmeier grobme...@gmail.com wrote: Hi, given the following: s:hidden