GlideNavigation (Next Experience) - Client
The GlideNavigation API enables refreshing the navigator and main frame in the Next Experience UI Framework.
Methods for this API are called within the nowapi namespace using the g_navigation system variable.
Parent Topic:Client Next Experience API reference
GlideNavigation [Next Experience] - refreshNavigator()
Refreshes the navigator contents.
| Name | Type | Description |
|---|---|---|
| None |
| Type | Description |
|---|---|
| None |
The following example shows how to trigger a menu transaction similar to Core UI.
// onChange() client script settings:
// Table: Incident
// UI Type: All
// Type: onChange
// Field Name: Short description
function onChange(control, oldValue, newValue, isLoading, isTemplate) {
if (isLoading || newValue === '') {
return;
}
nowapi.g_navigation.refreshNavigator();
}