- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2016 09:44 AM
Hello,
We have a requirement where the selected value from the SelectBox Catalog should be displayed in the incident. How can I get the selected value from the SelectBox?
Suggestions, tips would be greatly appreciated.
Thanks,
Shalini
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2016 09:58 AM
Is g_form.getValue('variable_name') not working? Write a on change catalog client script of that variable n check.Hit like, Helpful or Correct depending on the impact of the response.
function onChange(control, oldValue, newValue, isLoading) {
if (isLoading || newValue == '') {
return;
}
alert(g_form.getValue('urvaraiblename'));
//Type appropriate comment here, and begin script below
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2016 10:28 AM
Thanks Deepa! I am getting the selected value and now I want to append it to the title of the incident that gets created.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2016 10:31 AM
Please mark the answer as correct to close the thread

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-29-2016 10:13 AM
It seems that you are using record producer and wanted to set value on incident.
Use:
current.fieldName_on_incident = producer.variableName;
Thanks
Rohit