Within an XSLT file, I am calling an external js function.
I have the following within my XSLT file:
<script>
SetSelectIndex(this.form,'paramprocess', '{ParameterType}');
SetSelectIndex(this.form,'paramapproval', '{Any/ApprovalType}');
SetSelectIndex(this.form,'paramtype', '{Value/DataType}');
SetSelectIndex(this.form,'paramna', '{Any/Na}');
</script>
what would cause the following not to execute.
I have the following within my XSLT file:
<script>
SetSelectIndex(this.form,'paramprocess', '{ParameterType}');
SetSelectIndex(this.form,'paramapproval', '{Any/ApprovalType}');
SetSelectIndex(this.form,'paramtype', '{Value/DataType}');
SetSelectIndex(this.form,'paramna', '{Any/Na}');
</script>
what would cause the following not to execute.