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

 Release :

    - australia

ft:locale :

    - de-DE

ft:publication_title :

    - Australia API Reference

ft:clusterId :

    - crapiref

bundleId :

    - crapiref

workflow :

    - Creator


---

# GlideNavigation (Next Experience) - Client

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

* Freigeben Version: Australia
* 
* Aktualisiert 12. März 2026
* 
* ![](https://www.servicenow.com/docs/portal-asset/ico-clock) 1 Minute Lesedauer

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 |   |   |
[Tabelle : 1. Parameters]

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

| Type | Description |
|-|-|
| None |   |
[Tabelle : 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();
    }


