Re: Struts HELP Database Connectivity

2006-12-24 Thread Wendy Smoak
On 12/24/06, Mike1948 <[EMAIL PROTECTED]> wrote: Dear Sirs, Apologies for the length of this post but I have read forums, book and websites and cannot find how to do this. I'm sure it is very simpe but I am a complete novice so any help would be much appreciated. Please ask questions on the us

Re: Struts help

2004-05-06 Thread Alberto Corona
The value of Unchecked checkboxes are not passed on the request as part of submitting the form. So a way to work around this is to add hide field right after your checkbox with the same property name and set its value to false or F... This way if the user checks the checkbox the form will submit

RE: Struts help

2004-05-05 Thread Qayyum, Kashif
If a checkbox is not checked, no value is passed to the server. You wont get a null value, you just wont get anything. You need to keep a local list of all true/false values on the server, then update that list with what you get from the checkbox field from the actionForm and use that to update t

RE: Struts help

2004-05-05 Thread Edgar P Dollin
The checkbox is not returned as a parameter. You are using session based actionforms which only update fields for which parameters are returned. Either use request based parameters or use the 'reset' method to clear your checkbox fields. Edgar > -Original Message- > From: Chitta Ranjan M