Results 1 to 3 of 3

Thread: Code Stopped Working after Adding two Radio Buttons

Threaded View

  1. #1

    Thread Starter
    Addicted Member
    Join Date
    Sep 2005
    Posts
    200

    Exclamation Code Stopped Working after Adding two Radio Buttons

    This webpage is for an intranet ticketing system. My company is implementing Kaizen so we need to keep track of Kaizen tickets. In order to do this I added two radio buttons: one for yes and one for no. I also made it a requirement for one of the radio buttons be selected prior to sending in the request. The problem that I am having is that since the additional features were added none of the buttons are working as well as the "name" drop down menu no longer populates. I tried using the current working page and just entering the additional parts, but nothing still seems to work. Could someone please take a look at it and let me know they see something wrong. I'm using HTML-Kit and it's not giving me any errors. I'm lost. Thanks. I have attached the entire page so that you can see what all is going on. The MAIN problems are getting the autopopulation to work again when someone selects a name as well as getting the buttons to work. Which as I said died when I added the two items below. Thanks again.

    HTML Code:
    'Lines 173-176
    'ADDED****************************************
    [B]if document.HelpTicket.EmployeeCIP(0).checked=false and document.HelpTicket.EmployeeCIP(1).checked=false then
    	valid=false
    	message = message & "Employee CIP" & vbCrLf
    end if[/B]
    '*********************************************
    'Lines 643-651
    'ADDED**************************************************
    [B]<tr>
    	<td colspan="5">
    		<font SIZE="1">Is this a Kaizen Plus Employee CIP request?</font><br/>
    										<input type="radio" id="EmployeeCIP" name="EmployeeCIP" value="Yes" <%if Request.Form("EmployeeCIP")="Yes" then Response.Write " CHECKED"%>>
    										<font size="1">Yes</font>
    										<input type="radio" id="EmployeeCIP" name="EmployeeCIP" value="No" <%if Request.Form("EmployeeCIP")="No" then Response.Write " CHECKED"%>>
    										<font size="1">No</font>
    								</td>
    </tr>[/B]
    '*******************************************************
    Attached Files Attached Files

    Nenio foriras ĝis ĝi havas instru ni kiu ni devas scii.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width