Navigation refers to the process of navigating a network of resources, and the user interface that is used to do so.
36
votes
12answers
62k views
Detecting Back Button/Hash Change in URL
I just set up my new homepage at http://ritter.vg. I'm using jQuery, but very minimally.
It loads all the pages using AJAX - I have it set up to allow bookmarking by detecting the hash in the URL.
...
64
votes
10answers
106k views
How to Force Child Div to 100% of Parent's Div Without Specifying Parent's Height?
I would assume this is possible, but i just cant figure it out..
i have a site thats basic structure is set up as follows.
<div id="header"></div>
<div id="main">
<div ...
2
votes
1answer
8k views
JQGrid Programatically Select Grid Row
I have a JQGrid with loadonce:true(so it's all client side) and paging enabled(with, say 20 pages).
I would like to specify a row(programatically, without user input) and have my grid navigate to the ...
33
votes
7answers
32k views
Programmatically scroll to an Anchor Tag
Consider the following code:
<a href="#label2">GoTo Label2</a>
... [content here] ...
<a name="label0"></a>More content
<a name="label1"></a>More content
<a ...
4
votes
4answers
3k views
How to do page navigation for many, many pages? Logarithmic page navigation
What's the best way of displaying page navigation for many, many pages?
(Initially this was posted as a how-to tip with my answer included in the question. I've now split my answer off into the ...
52
votes
19answers
21k views
Navigation in django
I've just done my first little webapp in django and I love it. I'm about to start on converting an old production PHP site into django and as part its template, there is a navigation bar.
In PHP, I ...
4
votes
1answer
3k views
What is the difference between redirect and navigation/forward and when to use what?
What is difference between a navigation in JSF
FacesContext context = FacesContext.getCurrentInstance();
context.getApplication().getNavigationHandler().handleNavigation(context, null, url);
and a ...
6
votes
3answers
4k views
Zend Framework - multiplate navigation blocks
I want to use the navigation helper to build my navigation menus using Acl. The Acl part I have working fine.
I now want to be able to display a few different types of navigation. E.g. admin-nav, ...
12
votes
6answers
8k views
Passing a complex object to a page while navigating in a WP7 Silverlight application
I have been using the NavigationService's Navigate method to navigate to other pages in my WP7 Silverlight app:
NavigationService.Navigate(new Uri("/Somepage.xaml?val=dreas", UriKind.Relative));
...
46
votes
6answers
42k views
Multiple pages tutorial in Google Web Toolkit (GWT)
I just started learning Google Web Toolkit (GWT). How do I make different HTML pages in my GWT application?
For example, I want to create an application for a book store. In this application I'll ...
13
votes
5answers
7k views
How does Facebook keep the header and footer fixed while loading a different page?
When browsing through Facebook pages the header and fixed footer section remain visible between page loads AND the URL in the address bar changes accordingly. At least, that's the illusion I get.
...
82
votes
7answers
75k views
Should I use window.navigate or document.location in JavaScript?
What's the preferred method to use to change the location of the current web page using JavaScript? I've seen both window.navigate and document.location used. Are there any differences in behavior? ...
12
votes
3answers
14k views
Intent to start a navigation activity
In my application I have an option to start navigation to selected POI. Basically what I want is to launch a turn-by-turn navigator from my application. The thing is I don't know which (if any) ...
7
votes
8answers
5k views
Why is WebBrowser_DocumentCompleted() firing twice?
Well, I'm using a simple webbrowser control to browse to a page, so I need to change the Text of the form while doing so. I'm using -
private void webBrowser1_DocumentCompleted(object sender, ...
5
votes
2answers
10k views
How to programmatically navigate WPF UI element tab stops?
Can anyone tell me how to programmatically navigate through all UI element tab stops in a WPF application? I want to start with the first tab stop sniff the corresponding element, visit the next tab ...