- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-23-2020 02:16 AM
Hey Guys,
I have a requirement , Where i have to field == Desk phone.
When Desk phone is selected , 2 radio buttons should be appear. A and B.
When A is selected , it will have C and D under it.
How to achieve this??
Please suggest.
Thank you
Solved! Go to Solution.
- Labels:
-
Personal Developer Instance

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2020 09:08 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2020 09:08 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-24-2020 09:40 AM
Almost forgot, I also have onLoad script to hide the message on start. The form is beginning to look better than the form we have for new recruits. 🙂
function onLoad() {
g_form.setDisplay('new_hire', false);
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2020 12:32 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2020 01:27 AM
Syntax of .setDisplay is as follows:
.setDisplay('<label name>', true);
In the code you've posted, message is being passed instead of a name of a label. In my example, I have 3 variables defined on a form: (1) Select box, (2) Multiple Choice, (3) Label. In actually, there is a need to have multiple choice variable for each choice in the select box.
There is also a need to have label for each choice in the multiple choice variable.
"new_hire" in .setDisplay('new_hire', true) is the name of the label field and not a message.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-25-2020 01:52 AM