- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-17-2024 07:50 PM
Hi there!
I've come across gfstSubmit() while studying for the Client-Side UI Actions and I don't understand what does the acronym stands for. Could someone help with this?
Thank you!
Solved! Go to Solution.
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 03:41 AM - edited 09-19-2024 03:42 AM
gsftSubmit(String control, Object form, String action_name)
Submits a form as if the user had clicked a UI Action after checking for required fields and executing onSubmit() client scripts. Enables calling client-side code and server-side code and in a single UI action.
When to Use
- When you need to submit a form and handle the response without navigating away from the current page.
- When you want to perform specific server-side actions based on user inputs or selections on the form.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1005843
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 02:25 AM
I don't think it has any full form - gs may be for Glide system,
Details of this function can be found here:-
https://www.servicenow.com/community/developer-forum/what-is-gsftsubmit-s-param/m-p/1754900
Regards,
Nikhil Bajaj
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 03:41 AM - edited 09-19-2024 03:42 AM
gsftSubmit(String control, Object form, String action_name)
Submits a form as if the user had clicked a UI Action after checking for required fields and executing onSubmit() client scripts. Enables calling client-side code and server-side code and in a single UI action.
When to Use
- When you need to submit a form and handle the response without navigating away from the current page.
- When you want to perform specific server-side actions based on user inputs or selections on the form.
https://support.servicenow.com/kb?id=kb_article_view&sysparm_article=KB1005843
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-19-2024 06:17 PM
Thank you so much for your help!