Hi,
Added three Forms under Views of an Itemtype. Selected type as 'Default' for all the three forms and selected different classifications for two forms, no classification is selected for a form.
Each form has an HTML field with the following HTML code:
<head>
<script type="text/javascript">
function loadChecks()
{
alert("here");
var inn =top.aras.newIOMInnovator();
//..
//..code here
//..
}
</script>
</head>
<body onload="loadChecks();">
<div id="lists">
</div>
</body>
The above event is firing and giving the result with the html field which is on the first form(for which classification is not selected).
The same is not firing on the other two forms for which there is a classification. What would be the reason? Setting setTimeout(loadChecks,1000) is the only solution?
Thanks in advance for any help!