Hide collapse images

Sometimes, we don't want our users playing with collapse/expand categories in view on the Web.

The idea is to hide collapse images with a JavaScript function.

Put this code on your view template form: ($$ViewTemplateDefault) after 'ViewBody' field or after 'embedded view'. Don't forget to set text properties to Pass-Thru HTML.


<script>
// hide collapse.gif
// by gunawantw@innocent.com
// put this code after the embedded view

for (i=0;i<document.images.length;i++) {

	if (document.images[i].src.indexOf("icons/collapse.gif") > 0) {
		document.images[i].style.display = 'none'
	}
}
</script>

This was first published in September 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.