How to add a new item in a drop down list on the incident form
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2019 07:30 AM
Ho w do I add a new value or item in a drop down list for a field/column on the incident form.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2019 11:35 AM

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2019 11:37 AM
There are 2 ways, you can do this.
1. Right-click the field and click on configure choices and there you can add a new choice.
2. If you want the option dynamically added and not permanent, then you can do with the help of onload client script.
g_form.addOption('field_name','value','label');
For example, if you want to add new value in state dropdown, you can do like this
g_form.addOption('state','100','New Option');
Mark the comment as a correct answer and also helpful if it answers your question.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2019 12:29 PM
Thank you both so much. I did also find another way to do it. I went to a new form and selected table, then I added the new field to the choices list and gave it a number of the order I wanted it to be. It did show up once added. I will try it the other way also to keep my options open. Thank you again.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎03-14-2019 11:57 PM
Okay.
Could you mark the comment as a correct answer so that the question is removed from the unanswered list.