hi, ODS generates the following html for my vbar chart with goptions device=java: <script language="javascript" type="text/javascript"> <!-- document.writeln("<OBJECT"); document.writeln('style=" width: 640px; height: 480px; background-color: #FDFBF3; border-width: 0px;"'); document.writeln("ALIGN=\"baseline\" class=\"Graph\""); if (_ie == true) { document.writeln("CLASSID=\"clsid:8AD9C840-044E-11D1-B3E9-00805F499D93\""); if (_ie64 == true) { document.writeln("CODEBASE=\"http://javadl.sun.com/webapps/download/AutoDL?BundleId=47155#Version=1,6,0,0\""); } else { document.writeln("CODEBASE=\"http://java.sun.com/update/1.6.0/jinstall-6u24-windows-i586.cab#Version=1,6,0,0\""); } } else { document.writeln("CODEBASE=\"http://javadl.sun.com/webapps/download/GetFile/1.6.0_24-b07/windows-i586/xpiinstall.exe\""); document.writeln("TYPE=\"application/x-java-applet;version=1.6\""); } document.writeln(">"); //--> the browser translates this to: <object style="width: 640px; height: 480px; background-color: rgb(253, 251, 243); border-width: 0px;" class="Graph" codebase="http://javadl.sun.com/webapps/download/GetFile/1.6.0_24-b07/windows-i586/xpiinstall.exe" type="application/x-java-applet;version=1.6" align="bottom"> The document.writeln's are causing me problems since they don't get executed when inserted into a div by my ajax callback function. In sas93 I found the code that generates this <object> tag in the phtml tagset, so I can change this to static html. in sas913 I can't find it there, nor anywhere else. can anyone tell where this code comes from in sas913? thanks, Bart
... View more