- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 11:04 AM
Hi Experts,
Good Day !
Can someone please let me know what is the use of this.getParameter('') does in script include with an example, if possible ?
I am trying to explore GlideAjax but not able to get the use of this.getParameter('') in script include ?
Thank you in advance !
Thank you,
RIshi
Solved! Go to Solution.
- 27,525 Views

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 11:08 AM
Hello Rishi,
var usrName = this.getParameter('sysparm_user_name'); //Here sysparm_user_name will have the input received from client script i.e ga.addParam('sysparm_user_name',"Bob");
Reference:
http://wiki.servicenow.com/index.php?title=GlideAjax#gsc.tab=0

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 11:08 AM
Hello Rishi,
var usrName = this.getParameter('sysparm_user_name'); //Here sysparm_user_name will have the input received from client script i.e ga.addParam('sysparm_user_name',"Bob");
Reference:
http://wiki.servicenow.com/index.php?title=GlideAjax#gsc.tab=0
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 11:18 AM
Thanks a lot Pradeep for your clarification !!
Regards,
Rishi

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎10-10-2017 11:24 AM
You are very welcome. Thanks for participating in the community!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
2 weeks ago
Hello Pradeep,
What is the return type for this.getParameter('sysparm_user_name);