Categories | Question details Back To List | ||
I tried following code in XML DOM
------------------------------------
<html>
<body>
&l... I tried following code in XML DOM ------------------------------------ <html> <body> <script type="text/javascript"> function tryxml() { var doc=new ActiveXObject("Microsoft.XMLDOM"); var doc2=new ActiveXObject("Microsoft.XMLDOM"); doc.async="false"; var xmlDoc=doc.load("grid.xml"); var xx = doc2.load("grid2.xml"); var x = doc.documentElement; for (i=0;i<x.childNodes.length;i++) { document.write(x.childNodes[i].nodeName+" --> "+x.childNodes[i].getAttribute("id")+" --> "); for (j=0;j<8;j++) { var p = x.childNodes[i].childNodes[j].text; var l = p.length; x.childNodes[i].childNodes[j].childNodes[0].replaceData(l,0," *"); document.write(x.childNodes[i].childNodes[j].text+", "); } document.write("<br />"); } document.write("<br />"); document.write("<br />"); alert("1"); // doc.save("grid.xml"); doc.save(doc2); document.write(doc2.documentElement.xml); alert("2"); } </script> <a href="" onclick="tryxml()">Try XML</a> </body> </html> -------------------------------------------- I tried with file (commented code)- on XP it gave "permission error", on 98 it didn't but didn't replace the changes ("*" appended to elements text). I tried with object (uncommented code). In the downside write, it shows the modified document, but doesn't save the change to the physical file. Can you help me in some way ? Answer posted on Mar 05, 2007 09:38
As far as I know you can’t write XML directly from javascript (except special cases in IE). You need to send XML text to server side as part of url or through form submit, and use server side script to save script in file. So I want to resize the
grid like this: Answer posted by Andrei (Support) on Dec 08, 2014 09:18 If you haven't found the needed information there and still looking for a solution, you will find the additional help checking ajax toolkit php and free html5 website builder. |