Questions tagged [navigation]

Navigation refers to the process of navigating a network of resources, and the user interface that is used to do so.

Navigation refers to the process of navigating a network of resources and the user interface that is used to do so.

A navigation system is a (usually electronic) system that aids is navigation.

Navigation systems may be capable of:

  • containing maps, which may be displayed in human readable format via text or in a graphical format
  • determining a vehicle or vessel's location via sensors, maps or information from external sources
  • providing suggested directions to a human in charge of a vehicle or vessel via text or speech
  • providing directions directly to an autonomous vehicle such as a robotic probe or guided missile
  • providing information on nearby vehicles or vessels, or other hazards or obstacles
  • providing information on traffic conditions and suggesting alternative directions

Types of navigation systems

14678 questions
3
votes
2 answers

When is NavigationService initialized?

I want to catch the NavigationService.Navigating event from my Page, to prevent the user from navigating forward. I have an event handler defined thusly: void PreventForwardNavigation(object sender, NavigatingCancelEventArgs e) { if…
Matt Hamilton
  • 200,371
  • 61
  • 386
  • 320
3
votes
1 answer

Creating navigation from pages with ComfortableMexicanSofa and Foundation

I'm building my first web application using Ruby on Rails (v4.1.5), ComfortableMexicanSofa (v1.12.2) for CMS features and admin interface and Foundation 5 for the front-end. To set up Foundation for Rails, I followed this guide, which created the…
3
votes
1 answer

Main navigation in sidebar - which semantic tag to use?

I am stuck in choosing what to use for sidebar navigation. Here is the structure:
The aside tag shows content related to article. So…
Gasim
  • 7,615
  • 14
  • 64
  • 131
3
votes
4 answers

Border-bottom needs to move up on hover

I want to have a border (looks like underline) that moves up on hover. So if this is a link: LINK Then if I hover on it LINK """" Example from the website: http://matthias-schoenaerts.com/ (navigation bar) I want it as simple as possible. This is…
MrDikke
  • 157
  • 1
  • 1
  • 10
3
votes
9 answers

Tab Navigation - Frames or AJAX?

I have what I imagine to be a pretty standard web-interface. There are 4 different ListViews (grid controls) which are accessed by a series of Tabs on the top. I have implemented this as follows: alt text…
Duncan
  • 10,218
  • 14
  • 64
  • 96
3
votes
4 answers

HTML/CSS Navigation active state

I'm new to HTML and CSS and I just finished implementing my Navigation Bar which works great so far. It is black and on hovering over the fields they turn grey. Now, I'm trying to implement that the field of the active page stays in that grey but…
user3919507
  • 33
  • 1
  • 1
  • 3
3
votes
3 answers

using Silverlight 3's HtmlPage.Window.Navigate method to reuse an already open browser window

I want to use an external browser window to implement a preview functionality in a silverlight application. There is a list of items and whenever the user clicks one of these items, it's opened in a separate browser window (the content is a pdf…
Phil
  • 407
  • 4
  • 11
3
votes
2 answers

Navigating between full screen and normal activities

There are two Activities. Activity A is a full-screen Activity (status bar hidden), using getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN, WindowManager.LayoutParams.FLAG_FULLSCREEN); Activity B is a normal Activity (status bar…
Swayam
  • 16,294
  • 14
  • 64
  • 102
3
votes
2 answers

Foundation top-bar navigation on Rails app

I'm having issues with handling Foundation on my Rails application. They are mostly related to customizations and few navigation structures. In my assets folder I have application.css.scss and framework_and_overrides.css.scss as overriding styles…
3mpetri
  • 599
  • 1
  • 9
  • 26
3
votes
6 answers

iOS AMSlideMenu Receiver () has no segue with identifier 'rightMenu''

I wanted to use the library AMSlideMenu to have a navigation drawer. I saw the YT Tutorial to make my own navigation drawer with it. The problem, it's, I wanted to use ONLY the left menu, and so i've this error, because it doesn't found the…
deveLost
  • 1,151
  • 2
  • 20
  • 47
3
votes
1 answer

Why jsf life cycle skips render response after Invoke application when redirect the page?

I have two scenario I have two actions which have logic in bean like My buttons This are the two commnadButtons and there logic…
user3800551
  • 27
  • 1
  • 3
3
votes
1 answer

Navigating to page increases memory usage Windows Universal 8.1

I'm creating a Windows Universal 8.1 application. Everytime I navigate to a page and then navigate back and then to the page again a new instance of the page is being held in memory. Obviously the garbage collector frees the memory after a while,…
WereWolfBoy
  • 498
  • 1
  • 4
  • 23
3
votes
1 answer

What is the best way to handle navigation with PRISM?

Using Prism - what is the best way to handle navigation in a WPF application? And how do you apply this? Are there any best practices? In my application I'm currently using Event Aggregation. Any menu item or other item that should result in…
stiank81
  • 25,418
  • 43
  • 131
  • 202
3
votes
1 answer

JSF Back Button

How do I make a link which navigates the user back one page (i.e. same as clicking browser back)? Thanks.
DD.
  • 21,498
  • 52
  • 157
  • 246
3
votes
3 answers

Android Fragment Life Cycle

I have a action bar with 3 navigation tabs: Fragment 1, Fragment 2 and Fragment 3. Now, I want to do a task whenever Fragment 3 selected, so I put my task code in onCreateView() method. However, I find that Fragment 3 does not do the task, it means…
Hoang Lam
  • 523
  • 8
  • 23