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

Dynamically Creating XSL document

Subject: Dynamically Creating XSL document
From: Kevin Friend <kevin@xxxxxxxxxxxx>
Date: Mon, 9 Dec 2002 12:21:47 +1100
create xsl document
I am new to XSL/XML and I am trying to dynamically create an XSL stylesheet
document.

What syntax do I need to use for JScript?

I have tried various combinations of...

function CreateXSL()
{
objXSL = document.all.item("SortedData");
Inner = "<?xml version=\"1.0\"?>";
Inner += "<xsl:stylesheet version=\"1.0\"
xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">";
Inner += "<xsl:template match=\"/\">";
Inner += "<xsl:copy>";
Inner += "<xsl:apply-templates/>";
Inner += "</xsl:copy>";
Inner += "</xsl:template>";
Inner += "<xsl:template match=\"ARTICLE_LIST\">";
Inner += "<xsl:copy>";
Inner += "<xsl:apply-templates select=\"ARTICLE[starts-with(CODE,
\'J\')]\">";
Inner += "<xsl:sort select=\"CODE\"/>";
Inner += "<xsl:sort select=\"LOADPORT\"/>";
Inner += "</xsl:apply-templates>";
Inner += "</xsl:copy>";
Inner += "</xsl:template>";
Inner += "<xsl:template match=\"ARTICLE\">";
Inner += "<xsl:copy>";
Inner += "<xsl:apply-templates/>";
Inner += "</xsl:copy>";
Inner += "</xsl:template>";
Inner += "<xsl:template match=\"*|@*|text()|comment()\">";
Inner += "<xsl:copy>";
Inner += "<xsl:value-of select=\".\"/>";
Inner += "</xsl:copy>";
Inner += "</xsl:template>";
Inner += "</xsl:stylesheet>";
objXSL.innerHTML = Inner;
LoadSort.loadXML("SortedData");
source.transformNodeToObject(LoadSort, result);


Where LoadSort and result are already defined as...

var result = new ActiveXObject("Msxml2.DOMDocument");
result.async = false
result.validateOnParse = true;

and StoredData is
<XML id="SortedData">
</XML>

 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.