[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

RE: FW: Toggling radio buttons

Subject: RE: FW: Toggling radio buttons
From: "Robert Koberg" <rob@xxxxxxxxxx>
Date: Thu, 23 Aug 2001 13:34:30 -0700
xsl radio buttons
whoa... you need to take a look at the spec or run through a few tutorials.
You seem to be making up the language.



-----Original Message-----
From: owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx
[mailto:owner-xsl-list@xxxxxxxxxxxxxxxxxxxxxx]On Behalf Of Elisabeth
Kaminski
Sent: Thursday, August 23, 2001 3:16 PM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject:  FW: Toggling radio buttons




-----Original Message-----
From: Elisabeth Kaminski [mailto:ekaminski@xxxxxxxxxxxxx]
Sent: Thursday, August 23, 2001 3:07 PM
To: XSL-List@xxxxxxxxxxxxxxxxxxxxxx
Subject: Toggling radio buttons


I am trying to set the default value of radio button on one of my pages.  I
haven't had any trouble setting the intial values, but when I change the
value by clicking on another button, my database is updated with the correct
value but it is still displaying the default value!!!  I've tried a couple
variations of code so far.  If I don't set a default value I don't have
problems.  But I was my users to see the No radio button checked even if
it's the first time on the page.

Here is my code.  The radio buttons are simple Yes No radio buttons with
values of Y and N, respectively.

 <input type="radio" name="rdoGIQ6" value="Y"
onClick="disableGroup(this.form, 'txtGIQ6T', false)">
 	<xsl:if match=".[hlfr9_questions/giq6='Y']">
      	<xsl:attribute name="checked">1</xsl:attribute>
      </xsl:if>
</input>Yes

<input type="radio" name="rdoGIQ6" value="N"
onClick="disableGroup(this.form, 'txtGIQ6T', true)">
      <xsl:if not=".[hlfr9_questions/giq6='Y']">
     		<xsl:attribute name="checked">1</xsl:attribute>
      </xsl:if>
</input> No

The above code sets the No radio button to checked when a user first access
the page.  When I select the Yes radio button, my  database gets updated
with the correct value Y but I'm still seeing the No radio button being
check.

I have also tried the following code with the same result:

<input type="radio" name="rdoGIQ1" value="Y"
onClick="disableGroup(this.form, 'txtGIQ1T', false)">
	<xsl:choose>
		<xsl:when test=".[hlfr9_questions/giq1='Y']">
			<xsl:attribute name="checked">1</xsl:attribute>
		</xsl:when>
	<xsl:otherwise>
	</xsl:otherwise>
	</xsl:choose>
</input>Yes

<input type="radio" name="rdoGIQ1" value="N"
onClick="disableGroup(this.form, 'txtGIQ1T', true)">
	<xsl:choose>
		<xsl:when not=".[hlfr9_questions/giq1='Y']">
			<xsl:attribute name="checked">1</xsl:attribute>
		</xsl:when>
	<xsl:otherwise>
	</xsl:otherwise>
	</xsl:choose>
</input> No

Am I even on the right track?  Any suggestions would be greatly appreciated!
Elisabeth


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


 XSL-List info and archive:  http://www.mulberrytech.com/xsl/xsl-list


Current Thread

PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.