I have a string (efOutput.value which is XML data in string format) that I need to save then display the string value to a pop up window in usual XML display format. The following code will pop up a new window and display the tag values all in a row. I need the complete XML displayed in a collapsed and expanded way.
Any idea?
Thanks....
function clickwindowOpen(){
with (fromCallAA){
var res = efOutput.value;
var newWindow = window.open("","new"
newWindow.document.open("text/xml"
newWindow.document.write(res); }
}
Any idea?
Thanks....
function clickwindowOpen(){
with (fromCallAA){
var res = efOutput.value;
var newWindow = window.open("","new"
newWindow.document.open("text/xml"
newWindow.document.write(res); }
}