|
[XSL-LIST Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message] javascript problem
Hi all,
I have a javascript below:
var oFilteredXML = new ActiveXObject( "Msxml2.DOMDocument.4.0" );
var oTempXML = new ActiveXObject( "Msxml2.DOMDocument.4.0" );
bSuccess = oFilteredXML.loadXML( "<calls></calls>" );
var oRoot = oFilteredXML.firstChild;
oTempXML = oCallsXML.selectNodes( sFilterString );
oChildNode = oTempXML.nextNode;
while( oChildNode != null )
{
oChildNewnode = oChildNode.cloneNode(true);
oRoot.appendChild( oChildNewnode );
oChildNode = oTempXML.nextNode;
}
document.all.callDiv.innerHTML = oFilteredXML.documentElement.xml;
document.all.callDiv.innerHTML = oFilteredXML.transformNode(
oCallsXSL.documentElement );
What i want to do is add some code in here before appending.
That is (pseudo-code below):
//is oChildNode a DJ
//is oChildNode's djDRID(attribute of DJ) in oTempXML
//do not append
//else
//append
//end if
//else
//append
//end
How can i achieve it? If possible just write the code which perfomes the
pseudo-code above.
Thanks in advance
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








