I have an error in IE. I works in FF. I have to install VWD to watch where is the “Unknown error at runtime”
it crash at dhtmlxwindow.js
win._content.childNodes[2].innerHTML = obj
The code is very simple:
var w1 = dhxWins.createWindow(“w1”, 300, 25, 350, 200);
w1.setText(editWindow);
w1.setModal(true);
w1.keepInViewport(true);
url=“window/ip.jsp?uid=”+(new Date()).valueOf()+"&id_address="+ipAddress[ipSelectStudy][2]+"&ip="+ipStudy;
w1.attachURL(url, true);
Could you help me?
Try this:
w1.attachURL(url, true);
replace with
w1.attachURL(url);
The second parameter in attachURL method indicates whether the content will be loaded through AJAX.
Thanks a lot.
Anyway, the problem solved because i finded a tag no-closed. When i close the tag, the problem disappear