ebs.goToRoute

(FintechOS Studio 22.1 and later)

Maintains the current route and navigates to the specified page with or without saving it in the browser's history.

HINT  
This function allows navigation when the FintechOS Portal is either in Single Page Application mode (see EbsRouter for details) or in legacy mode. On environments that operate in legacy mode, make sure you provide the legacyUrl property in the optional routeConfig parameter.

Syntax

Copy
function ebs.goToRoute(routeState: IRouterState, routeConfig?: IRouteConfig, replaceHistory?: boolean): void;
 
Parameter Type Description
routeState IRouterState Identification information for the page (the state).
routeConfig? IRouteConfig Optional configurations for backward compatibility, pop-up windows, and fallback routes.
replaceHistory? boolean Allows you to skip certain pages from the navigation history when you press the browser's Back and Forward buttons, such as secondary pages that you open in pop-up windows.
  • true - Doesn't save the destination page in the browser's history.
  • false (default) - Saves the destination page in the browser's history.

Type Aliases

Examples