Contact Us
Contact Sales:
Toll Free: (888)844-3035
Direct: +1(248)581-8787 Email
Contact Support:
Toll Free: (888)844-3035
Direct: +1(248)581-8787
Contact Sales:
Toll Free: (888)844-3035
Direct: +1(248)581-8787 Email
Contact Support:
Toll Free: (888)844-3035
Direct: +1(248)581-8787
FAQ Home > inClick Installation
inClick 4 Required Header Update
Article ID: #000154
For users upgrading from inClick 3 to inClick 4, a small update to the /html/header.html file is required. This update will activate advanced Ajax functions within the user interface as well as apply rounded corners.
- 1. Make a backup of the /html/header.html file.
- 2. In the /html/header.html file, find the following line of code:
<script type="text/javascript" src="<?php echo INCLICK_WEB_URL;?>a/overlib.js">
</script>- 3. Just below that line of code, add the following:
<?php
header_function();
?>- 4. To enable rounded corners (Firefox only), add the following under the code outlined in Step 3:
<script type="text/javascript">
$(document).ready(function()
{
if ($.browser.mozilla)
{
$("table.report").attr("cellspacing", 0);
$("table.report").css("border-collapse", "separate");
$("table.report").corners('5px');
$("div, h1, h2, h3, h4, h5, fieldset, legend, ul.navigation_menu").not('div.error').corners('8px');
}
else if ($.browser.msie || $.browser.safari)
{
$("input[type='checkbox'], input[type='radio']").css('border', '0px');
$("fieldset").css('padding-top', '2em'); //Fix fieldset padding issue
$("fieldset").css("margin-top", "20px");
}
}
);
</script>NOTE: If you are currently using jQuery, you will need to remove your reference to prevent conflicts.
[ Search FAQ | FAQ Home ]