GlideNavigation (Next Experience) - Client

  • Rversion finale: Australia
  • Mis à jour 12 mars 2026
  • 1 minute de lecture
  • 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()

    Refreshes the navigator contents.

    Tableau 1. Parameters
    Name Type Description
    None
    Tableau 2. Returns
    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();
    }