To get Value of LOOKUP SELECT BOX field

akhila13
Tera Expert

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...

25 REPLIES 25

with the help of client script -on submit is it possible..

 

by using glide ajax you can do that.

any restrictions you have to not add one line code in your workflow run script activity ?

can u help me with the glide ajax code.

 

The same workflow is used for many other CATALOG ITEMS.. so modifying workflow not preffered

can you explain in what scenario you want to trigger the client script? 

 

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.