- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2015 05:10 AM
Hi,
In a UI page, I have a jelly mult-line text field control declared like this.
<g:ui_multiline_input_field name="dialog_comments" id="dialog_comments" label="Additional comments"
value="${jvar_comments_text}" mandatory="true" />
I am trying to access this value in "Processing script". I tried different syntaxes like below.
tmpcurrent.setValue('u_comment',dialog_comments);
tmpcurrent.setValue('u_comment',jvar_comments_text);
tmpcurrent.setValue('u_comment',comments_text);
But none works. Can you please tell me, what syntax i need to use.
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2015 05:28 AM
Got the syntax finally from this page.
request.getParameter("dialog_comments");
GlideDialog Window Example — ServiceNow ELITE.com
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
12-22-2015 05:28 AM
Got the syntax finally from this page.
request.getParameter("dialog_comments");
GlideDialog Window Example — ServiceNow ELITE.com