NavBarCommand.location property

[NavBarCommand is no longer available for use as of Windows Library for JavaScript (WinJS) 4.2. Instead, use SplitViewCommand. ]

Get or sets the page to navigate to when this command is invoked.

Syntax

<div 
    data-win-control="WinJS.UI.NavBarCommand" 
    data-win-options="{ location : value}">
</div>
var location = navBarCommand.location;
navBarCommand.location = location;

Property value

Type: Object

An object to navigate to. Typically, the location is a string containing a URI. When the command is invoked, this object is passed to the WinJS.Navigation.navigate function. navigate is not called if location is null, undefined, or an empty string.

Requirements

Minimum WinJS version

WinJS 2.0

Namespace

WinJS.UI

See also

NavBarCommand

NavBarCommand

NavBar

NavBarContainer

BackButton

AppBar

Your first app - Part 3: PageControl objects and navigation

Navigating between pages (HTML)

Adding app bars

Adding nav bars

HTML AppBar control sample

HTML NavBar control sample

Navigation and navigation history sample

Designers

Command patterns

Navigation patterns

Guidelines for app bars

Bottom app bar

Top app bar