Re: checkbox member of form Bean doesn't pass/get value from my DispatchAction.

2006-02-24 Thread Laurie Harper
CTED]> 02/23/2006 09:14 PM Please respond to "Struts Users Mailing List" To: "Struts Users Mailing List" cc: Subject: Re: checkbox member of form Bean doesn't pass/get value from my DispatchAction. Browsers only transmit values when th

Re: checkbox member of form Bean doesn't pass/get value from my DispatchAction.

2006-02-24 Thread digant . k . joshi
ling List" cc: Subject:Re: checkbox member of form Bean doesn't pass/get value from my DispatchAction. Browsers only transmit values when the checkbox is "checked" - in the reset method of your ActionForm set the "lockedFlag" to the fal

Re: checkbox member of form Bean doesn't pass/get value from my DispatchAction.

2006-02-23 Thread Niall Pemberton
Browsers only transmit values when the checkbox is "checked" - in the reset method of your ActionForm set the "lockedFlag" to the false value. Niall - Original Message - From: <[EMAIL PROTECTED]> Sent: Thursday, February 23, 2006 9:22 PM > I have problem with checkbox property not comm

checkbox member of form Bean doesn't pass/get value from my DispatchAction.

2006-02-23 Thread digant . k . joshi
I have problem with checkbox property not communicating with my Action. I have String property with "Y"/"N" in FormBean populated from DAO , I convert it to "yes"/"no" before sending it to form and I do conversion back from "yes"/"no" to "Y"/"N" after I receive from form and send it to DAO. What