AJAX
-
- UpdatedAug 3, 2023
- 4 minutes to read
- Vancouver
- API implementation
AJAX (asynchronous JavaScript and XML) is a group of interrelated, client-side development techniques used to create asynchronous Web applications.
AJAX enables web applications to send and retrieve information to and from a server in the background, without impacting the user experience with the displayed web page.
GlideAjax
The GlideAjax class allows the execution of server-side code from the client. GlideAjax calls pass parameters to the script includes, and, using naming conventions, allows the use of these parameters.
- Initialize GlideAjax with the name of the script include that you want to use.
- When creating the script include, you must set the name field to be exactly the same as the class name.
- When creating the script include, you must select the Client callable check box.
- Specify the parameter sysparm_name. GlideAjax uses sysparm_name to find which function to use.
- Any extra parameters may be passed in, all of which must begin with
sysparm_. Avoid using predefined parameter names:
- sysparm_name
- sysparm_function
- sysparm_value
- sysparm_type
- Code is then executed with the getXML() or getXMLWait() functions.
For additional information, refer to the GlideAjax API.
Examples of asynchronous GlideAjax
There are two parts to the asynchronous GlideAjax script: client-side and server-side code.
Hello World: Returning a value from the server
Example: Client side
This code runs on the client (the web browser). Create a client script
as normal. This sends the
parameters to server, which then does the processing. So that the client does not wait for
the result, a callback function is used to return the result, passed to the
getXML() function. (In this case it is called
HelloWorldParse
.)
Example: Server side
HelloWorld
.- The sys_script_include code must extend the AbstractAjaxProcessor class and be client-callable.
- Function names starting with "_" are considered private and are not callable from the client.
- Avoid overriding methods of AbstractAjaxProcessor, including
initialize
. While it is possible to invoke methods of your superclass object which you have overridden, it is complicated and best avoided altogether.
Returning multiple values
Since the response is an XML document we are not limited to returning a single
answer
value. Here is a more complex example returning multiple XML nodes
and attributes.
Example: AJAX processor script include
Example: Client script
Example: XML response
Examples of synchronous GlideAjax
Use synchronous when your script cannot continue without the GlideAjax response. This stops the session until the response is received.
If your use case demands that no further processing can occur until the GlideAjax response has been received, you can use getXMLWait(). However, because this will slow down your code and lock the user session until the response is received, it is generally recommended that you use getXML() with a callback function.
This code results in a client-side alert that displays The Server Says Hello Bob!.
AJAXClientHelper
Provides helper functions for Ajax clients to retrieve a value from an Ajax client.
Where to use
Use this script include wherever your need to retrieve a value from an Ajax client.
Method summary
Method summary | Description |
---|---|
getDisplay() | Gets the display value from the choice list. |
Method detail
API method | Description | Input parameters | Output returns |
---|---|---|---|
getDisplay() | Gets the display value from the choice list. | none | The display value. |