Informatica ActiveVOS
- Informatica ActiveVOS 9.2.4.6
- All Products
<head> <!-- Include 3rd party script to show tree control plugin. This example requires the jQuery treeview script and the css. --> <link type="text/css" href="js/treeview/jquery.treeview.css" rel="stylesheet" /> <script type="text/javascript" src="js/treeview/jquery.treeview.js"/> <!-- Include your custom or common scripts that is shared with other forms --> <script type="text/javascript" src="js/some_util.js"/> <!-- Inline CSS --> <style type="text/css"> p {margin-left: 2em;} </style> <!-- Inline common script --> <script type="text/javascript"> // execute your code. e.g. jQuery $(document).ready( function() { // do something }); </script> </head> <body> </body>
<!-- Central Includes in the .avcconfig file --> <tns:centralIncludes> <!-- Contents of the xhtml head go here as-is, with xhtml namespace. The path to resources must be absolute href or relative to this .avcconfig file. E.g. js/treeview/jquery.treeview.css --> <!-- Third party library (jQuery treeview for example) --> <link xmlns="http://www.w3.org/1999/xhtml" t type="text/css" href="js/treeview/jquery.treeview.css" rel="stylesheet" /> <script xmlns="http://www.w3.org/1999/xhtml type="text/javascript" src="js/treeview/jquery.treeview.js"/> <!-- Custom scripts --> <script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript" src="js/some_util.js"/> <!-- Inline CSS --> <style xmlns="http://www.w3.org/1999/xhtml" type="text/css"> p {margin-left: 2em;} </style> <!-- Inline common script --> <script xmlns="http://www.w3.org/1999/xhtml" type="text/javascript"> // execute your code. e.g. jQuery $(document).ready( function() { // do something }); </script> </tns:centralIncludes>