HTML field Value
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2017 02:08 AM
Hi
I do have a record producer with variable reference type and other is html type.
What I want to do is to set the value of the html field as it is selected in the reference field.
How this can be done ?
Thanks
Snehal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2017 02:35 AM
Reframing - I need the content of the KB article selected to be populated in the html field.

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2017 02:37 AM
Hi Snehal,
Please refer the thread below. i hope it will help you.
Thanks,
Harshvardhan
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2017 02:42 AM
Hi Snehal,
You can set the value directly on the HTML field. Write an on Change script on your reference kb article field and add this script in it.
var kb = g_form.getReference('kb_variable'); // replace with your kb reference variable name
g_form.setValue("html_text_variable", kb.text);
If you require, you can also convert the call to a GlideAjax. Please try and let me know if it works
Thank You
Please Hit Like, Helpful or Correct depending on the impact of response