User 9563be2caf
26-06-2013 21:20:50
Hi,
I have installed Marvin Sketch v6 into webserver and when I ran my web app in IE 9 (using Application Express from Oracle), it generates the following error in Apache log (works fine in FireFox):
---------------------------------------------------------------------
SIGNATURE (parameter names) MISMATCH
VARIABLES IN FORM NOT IN PROCEDURE: MARVINSKETCHAPPLET
NON-DEFAULT VARIABLES IN PROCEDURE NOT IN FORM:
----------------------------------------------------------------------
Here is my html and javascript code:
<html>
<body>
<form name="MarvinSketchForm" action="javascript:void(0);">
<table border="1">
<tr>
<td colspan="2">
<script type="text/javascript" SRC="http://nahcsqa101&CHEMAXON_DIR./marvin.js"></script>
<script type="text/javascript">
<!--
msketch_name="MarvinSketchApplet";
msketch_begin("http://nahcsqa101&CHEMAXON_DIR.", 540, 480);
msketch_param("mol", $v('P7_MOLSTRING'));
msketch_param("autoscale", "true");
msketch_end();
//-->
</script>
</td>
</tr>
</table>
</form>
</body>
</html>
------------------------------
<script type="text/javascript">
function getMolString()
{
var s = document.MarvinSketchApplet.getMol("mol");
$x('P7_MOLSTRING').value = s;
//alert($x('P7_MOLSTRING').value);
}