- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-29-2019 10:20 PM
Hi,
Please help me how to hide Annotation (which is line separator) on Form, when form loads.
My scenario is as follows,
I have 3 Annotations (which are line separator's) on form, when form loads that 3 annotations needs to be hide.
Please help with valuable suggestions.
Solved! Go to Solution.
- Labels:
-
Best Practices

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2019 10:11 PM
Hi,
Use the following to show annotation on form:
my_annotation.style.display = 'block';
and following to hide:
my_annotation.style.display = 'none';
Please replace 'my_annotation' with id of your own annotation.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2019 04:52 PM
Check this out.
Please mark my response as correct and helpful if it helped solved your question.
-Thanks

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-30-2019 10:11 PM
Hi,
Use the following to show annotation on form:
my_annotation.style.display = 'block';
and following to hide:
my_annotation.style.display = 'none';
Please replace 'my_annotation' with id of your own annotation.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-17-2021 02:50 PM
Where exactly would I use this?