I have a need to hide some dialog list fields on a form but can’t use the hide/when formula because the fields need to be accessible via javascript. For normal fields I use “type=hidden” in the help description to accomplish this. It does not work for dialog list fields. Any ideas?
Subject: Web or Notes client?
Is this on the web? If so, take a look at this blog entry: Using jQuery to emulate Notes hide-when – TexasSwede
What I would do just assign a specific class (e.g. class=“hideMe”) for the fields you want to hide. Then use jQuery to hide them all:
$(“.hideMe”).hide();