Hi Isomorphic,
the following code does not display the wikipedia logo properly in IE9. But it works wit Firefox and Chrome.
How can the image be displayed correctly with IE9?
Greetings Thomas
the following code does not display the wikipedia logo properly in IE9. But it works wit Firefox and Chrome.
How can the image be displayed correctly with IE9?
Greetings Thomas
Code:
<!DOCTYPE html> <HTML> <HEAD> <SCRIPT>var isomorphicDir="/isomorphic/";</SCRIPT> <SCRIPT SRC=/isomorphic/system/modules/ISC_Core.js></SCRIPT> <SCRIPT SRC=/isomorphic/system/modules/ISC_Foundation.js></SCRIPT> <SCRIPT SRC=/isomorphic/system/modules/ISC_Containers.js></SCRIPT> <SCRIPT SRC=/isomorphic/system/modules/ISC_Forms.js></SCRIPT> <SCRIPT SRC=/isomorphic/system/modules/ISC_DataBinding.js></SCRIPT> <SCRIPT SRC=/isomorphic/skins/Enterprise/load_skin.js></SCRIPT> </HEAD> <BODY> <SCRIPT> isc.VLayout.create({ id: "drawPaneLayout", showEdges: true, height: 400, width: 400, members: [ isc.Img.create({ "src":"http://upload.wikimedia.org/wikipedia/commons/6/63/Wikipedia-logo.png", "imageType":"center" }), ] }); </SCRIPT> </BODY> </HTML>
Comment