---
sourceDocument: Australia API Reference
sourceDocumentLink: https://servicenow-prod.fluidtopics.net/r/api-reference

 Release :

    - australia

ft:locale :

    - en-US

ft:publication_title :

    - Australia API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideNavigation (Next Experience) - Client

# GlideNavigation (Next Experience) - Client {#ariaid-title1}

Release version: Australia  
Updated March 12, 2026  
![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 minute to read  
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.

## GlideNavigation \[Next Experience\] - refreshNavigator() {#ariaid-title2}

Refreshes the navigator contents.
{#GNav-refreshNavigator__table_sgz_zpw_15__entry__3}

| Name | Type | Description |
|-|-|-|
| None |   |   |
[Table 1. Parameters]

{#GNav-refreshNavigator__table_sgz_zpw_15} {#GNav-refreshNavigator__table_tgz_zpw_15__entry__2}

| Type | Description |
|-|-|
| None |   |
[Table 2. Returns]

{#GNav-refreshNavigator__table_tgz_zpw_15}  
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();
    }


