Docs (4.0.0)
class UIButton property

navigateTo

Navigation target to navigate to when this button is clicked.

navigateTo?: string | LazyString | Partial<NavigationTarget> | {
    getNavigationTarget(): NavigationTarget;
}

Notes

  • When set, the button will emit a Navigate event when clicked. This event is handled automatically by a containing Activity, if any. The target pageId will be filled in by the handling activity if it’s not set here.

Related