UI Page. Client Script to HTML.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-10-2022 03:02 PM
How can I pass a variable at the Client Script to HTML, or from Processing to HTML, to manage GlideRecord?
From Client script to line 5 of HTML, please.
Labels:
- Labels:
-
Scripting and Coding
2 REPLIES 2

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2022 08:47 AM
Hi Ramon,
You might find this previous post useful:
Kind Regards,
Shane

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎05-12-2022 04:17 PM
Hi, I would like to pass a
// Client script
var data = g_form.getUniqueValue();
from Client script to a query in HTML (or Processing, returning result to HTML)
// HTML
var gr = new GlideRecord('table');
gr.get(data);
no to pass to a "form element".
Thanks.