Connecting Tech Pros Worldwide Help | Site Map

XSLT: Transforming HTML Input Element's Values

  #1  
Old May 15th, 2007, 06:55 AM
MaggotChild
Guest
 
Posts: n/a
Hi, I'm trying to transform the values entered into a form:

HTML:

<div id="container">
<div id="bs">
<input id="name" type="text"/>
<p>PPPPP</p>
<a href="#" onclick="return transform()">Do it!</a>
</div>
</div>

XSLT:

<xsl:template match="/">
<strong><xsl:value-of select="//input[@type='text']/@value"/></
strong>
--><xsl:value-of select="//p/text()"/>
</xsl:template>

Java Script:

function transform() {
....

xmlDoc = document.implementation.createDocument("", "", null);
xmlRef = document.getElementById('bs');

var clone = xmlDoc.importNode(xmlRef,true);
xmlDoc.appendChild(clone);

var fragment = xsltProcessor.transformToFragment(xmlDoc, document);

document.getElementById("container").innerHTML = "";
document.getElementById("container").appendChild(f ragment);

....
}

The <pelement gets transformed, but not the input element.
..
Now, I understand that I can pull the values out of the form with Java
Script and simply change the XPath expression to a XSLT param, but why
can't the transformation pull the values directly?

<input type="text" value="grr!"/will transform. Is the tree
structure for these two different? Humm, now that I think about it

document.getElementById('name').value

returns the value, whereas

document.getElementById('name').getAttribute('valu e')

returns null

Any explanations? Is it not possible to transform user supplied values
for input elements without passing the values into the style sheet as
parameters?

  #2  
Old May 15th, 2007, 01:35 PM
Martin Honnen
Guest
 
Posts: n/a

re: XSLT: Transforming HTML Input Element's Values


MaggotChild wrote:
Quote:
<input type="text" value="grr!"/will transform. Is the tree
structure for these two different? Humm, now that I think about it
>
document.getElementById('name').value
>
returns the value, whereas
>
document.getElementById('name').getAttribute('valu e')
>
returns null
>
Any explanations? Is it not possible to transform user supplied values
for input elements without passing the values into the style sheet as
parameters?
I do not think it is possible, @value is the attribute value which is
different from the value property of a control as the attribute value
does not change when someone enters text in the control. So the XSLT
processor or the XPath engine does only have access to the attribute
value, not the value property.


--

Martin Honnen
http://JavaScript.FAQTs.com/
Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
xslt queries in xml to SQL queries Ian Roddis answers 3 February 26th, 2006 07:05 PM
Subtracting the values in attributes in an XSLT David S. Alexander answers 4 January 18th, 2006 07:45 PM