To get Value of LOOKUP SELECT BOX field
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 01:57 AM
I have created a variable set 'facility' and inside that a variable named 'building'.. Variable building is of type LOOKUP SELECT box.. i want to map the value in field building to description field in RITM...
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 02:19 AM
with the help of client script -on submit is it possible..

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 02:31 AM
by using glide ajax you can do that.
any restrictions you have to not add one line code in your workflow run script activity ?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 02:49 AM
can u help me with the glide ajax code.
The same workflow is used for many other CATALOG ITEMS.. so modifying workflow not preffered

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 02:58 AM
can you explain in what scenario you want to trigger the client script?

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-21-2019 03:14 AM
You can write an onLoad client script on catalog item and make it Applies only to RITM
g_form.setValue('description', g_form.getValue('building'));
Note: This will set the description value to builing variable every time form loads.