|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] RE: Dynamically Creating XSL document
FYI,
Solved this one myself (often the best way to learn), it was quite simple in
the end....
// Set up the resulting document.
var result = new ActiveXObject("Msxml2.DOMDocument");
result.async = false
result.validateOnParse = true;
var TempSort = new ActiveXObject("Msxml2.DOMDocument");
TempSort.async = false
TempSort.validateOnParse = true;
function CreateXSL()
{
Inner = "<?xml version=\"1.0\"?>";
Inner += "<xsl:stylesheet version=\"1.0\"
xmlns:xsl=\"http://www.w3.org/1999/XSL/Transform\">";
........
........
........
TempSort.loadXML(Inner);
source.transformNodeToObject(TempSort, result);
FetchData(0);
}
The "loadXML" was the missing link!
XSL-List info and archive: http://www.mulberrytech.com/xsl/xsl-list
|
PURCHASE STYLUS STUDIO ONLINE TODAY!Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced! Download The World's Best XML IDE!Accelerate XML development with our award-winning XML IDE - Download a free trial today! Subscribe in XML format
|

Cart








