|
Peter, Did this work? I was offline for a while today, and didn't see if you got it working? -Bob Cozzi www.RPGxTools.com RPG xTools - Enjoy programming again. -----Original Message----- From: web400-bounces@xxxxxxxxxxxx [mailto:web400-bounces@xxxxxxxxxxxx] On Behalf Of Bob Cozzi Sent: Friday, January 13, 2006 9:06 AM To: 'Web Enabling the AS400 / iSeries' Subject: Re: [WEB400] ***** <input TYPE="checkbox"> issue Pete, You are not allowing the normal process to work. You are using JavaScript to override the behavior of the browser. The problem is the following line of code that YOU wrote: var parms = "&co=" + Form1.co.value + "&ioc=" + Form1.ioc.value + "&rating=" + Form1.rating.value + "&reptyp=" + Form1.reptyp.value ; The Form1.co.value is _always_ the value of the checkbox object; in JavaScript. You are asking for the check-state in your questions here, but are retrieving the value instead. You need to get the checkstate as follows: if (Form1.co.checked) { coValue = Form1.co.value; } else { coValue = ""; } var parms = "&co=" + escape(coValue) + "&ioc=" + escape(Form1.ioc.value) + "&rating=" + escape(Form1.rating.value) + "&reptyp=" + escape(Form1.reptyp.value) ; -Bob Cozzi
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.