Remove 'No documents found' -- W3C standards-compliant

Remove 'No documents found' -- W3C standards-compliant

There have been several tips how to remove the 'No documents found' messages in Web views.

Some did it by using CSS to hide all H2 tags, others used a "Hide when"-formula and some solutions used JavaScript and the proprietary (=evil) innerHTML JS-property invented by MS.

Here is a more W3C standards-compliant version, which should run in all DOM-capable browsers (Mozilla 1.x, Netscape 6.x and MS IE 5.x/6.x, Opera 7, maybe 6). This utilizes the usual view-serving-form (i.e., "$$ViewTemplateDefault") or page and the $$ViewBody field/embedded view.

Copy and paste the script below your view/view field and mark the entire script as pass-through HTML. I hope this works for all standards-compliant browsers and helps your daily business.

<script type='text/javascript'>
<!-- 
var oH2s = document.
getElementsByTagName('h2');
var oTmp; var oH2;
if(oH2s) {
  for(var i=0;I<oH2s.length;i++) {
    var oTmp = oH2s[i];
    if(oTmp.firstChild.data=='No documents found')
      oH2 = oTmp;
  }
  if(oH2){oH2.firstChild.data='replace this 
text with anything.'};

};
 //-->
</script>

Do you have comments on this tip? Let

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

us know.

This was first published in October 2003

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.