ui.update_navs

ui.update_navs(id, selected=None, session=None)

Change the value of a navs container on the client.

Parameters

id : str

An input id.

selected : Optional[str] = None

The values that should be initially selected, if any.

session : Optional[Session] = None

A Session instance. If not provided, it is inferred via get_current_session.

Note

The input updater functions send a message to the client, telling it to change the
settings of an input object. The messages are collected and sent after all the
observers (including outputs) have finished running.

The syntax of these functions is similar to the functions that created the inputs in
the first place. For example, [](:func:`~shiny.ui.input_numeric`) and
[](:func:`~shiny.ui.update_numeric`) take a similar set of arguments.

Any arguments with ``None`` values will be ignored; they will not result in any
changes to the input object on the client.

For [](:func:`~shiny.ui.update_radio_buttons`), [](:func:`~shiny.ui.update_checkbox_group`), and
[](:func:`~shiny.ui.update_select`), the set of choices can be cleared by using ``choices=[]``.
Similarly, for these inputs, the selected item can be cleared by using
`selected=[]`.

See Also

Examples

#| standalone: true
#| components: [editor, viewer]
#| layout: vertical
#| viewerHeight: 400

## file: app.py
from shiny import App, Inputs, Outputs, Session, reactive, ui

app_ui = ui.page_sidebar(
    ui.sidebar(ui.input_slider("controller", "Controller", min=1, max=3, value=1)),
    ui.navset_card_tab(
        ui.nav_panel("Panel 1", "Panel 1 content", value="panel1"),
        ui.nav_panel("Panel 2", "Panel 2 content", value="panel2"),
        ui.nav_panel("Panel 3", "Panel 3 content", value="panel3"),
        id="inTabset",
    ),
)


def server(input: Inputs, output: Outputs, session: Session):
    @reactive.effect
    def _():
        ui.update_navs("inTabset", selected="panel" + str(input.controller()))


app = App(app_ui, server)