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

Value Extraction Problem

Subject: Value Extraction Problem
From: P Vikram <vikram_good_boy@xxxxxxxxx>
Date: Wed, 5 Sep 2001 14:52:28 -0700 (PDT)
value extraction
Hi
Iam unable to populate my textbox with value.My code
is as follows:

Iam able to get the value with
alert(testXML.documentElement.selectSingleNode("//TEST").text);

<?xml version="1.0" ?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0"
               
xmlns="http://www.w3.org/TR/REC-html40">
				
<xsl:template match="/">
	<xsl:apply-templates select="//TESTDATA"/>
</xsl:template>

<xsl:template match="TESTDATA">
	<xsl:apply-templates select="//DETAILS"/>
</xsl:template>

<xsl:template match="DETAILS">
	<xsl:apply-templates select="//TABLE"/>
</xsl:template>

<xsl:template match="TABLE">

		<INPUT maxLength="7" name="test" size="14">
    <xsl:attribute name="value">
      <xsl:value-of select="TEST"/>
    </xsl:attribute>
  </INPUT>
</xsl:template>

</xsl:stylesheet>


function test() {
	
	var xslFile;
	testXSL.async = false;
	xslFile = "test.xsl";
	testXSL.load(xslFile);
	
	rcXSL = titleXSL.parseError.errorCode;
	//alert(rcXSL);
	tdata = titleXSL.parseError.reason;
	//alert(tdata);
	rcXML = titleXML.parseError.errorCode;
	if (rcXSL+rcXML == 0) 
		{
		optHTML =
testXML.documentElement.transformNode(testXSL.documentElement);
		}
	
	document.all.item("test").innerHTML=optHTML;
}
	

<XML id="testXSL"></XML>
//this is runtime display from view source..i want
//iwantthisvalue to be populated in my textbox

<XML id="testXML">
 
<TESTDATA>
<DETAILS>
<TABLE>
<TEST>iwantthisvalue</TEST>
</TABLE>
</DETAILS>
</TESTDATA>


Thanks

</XML>

--- Joseph Kesselman <keshlam@xxxxxxxxxx> wrote:
> 
> The input to XSLT must be well-formed XML. XML
> requires that all attribute
> values be quoted, and all elements be terminated.
> Rewrite your literal
> element in XHTML -- change
>      <INPUT maxLength=7 name=test size=14>
> to
>      <INPUT maxLength="7" name="test" size="14">
> and be sure you have a </INPUT> after the
> <xsl:attribute> block.
> 
> ______________________________________
> Joe Kesselman  / IBM Research
> 
> 
>  XSL-List info and archive: 
> http://www.mulberrytech.com/xsl/xsl-list
> 


__________________________________________________
Do You Yahoo!?
Get email alerts & NEW webcam video instant messaging with Yahoo! Messenger
http://im.yahoo.com

 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-2011 All Rights Reserved.