navigation

SPNavigation - Displaying User Defined Navigation

I'm trying to build a secondary navigation on a front end site, and I can't get past an issue. In the code below, the output displays something similar to: water -----water -----pollination -----dormancy pollination -----water -----pollination -----dormancy dormancy -----water -----pollination -----dormancy // Loop through Root Webs...

What is the best mapping software to use for mobile navigation devices?

Hi, I'm starting to work on a project that involves integration with the mapping software on a navigation device. Ideally the navigation device will be touch screen, and we will be able to write code that controls the navigation/mapping software on the device (we want to send info to and from the mobile device -it will be in a car perm...

Tabbing between elements of a view in WPF/xaml

Hello, I'm trying to setup the tab keyboard control options on my current WPF project in xaml. Essentially, I've got a TextBox element within a view, within another view, within another view. Anyway, when pushing tab on the keyboard, it starts cycling through various elements of the container views and eventually goes to the TextBox I ...

Vim file navigation

I'm trying really hard to learn vim after using TextMate for the last few years. I've started to commit some of the in-file navigation to memory, but I'm struggling with navigating between multiple files. In my workflow, it is pretty common that I'm flipping between a handful of files pretty regularly (enough files such that split-pane w...

How do you handle displaying navigation and sub navigation in an MVC app?

I'm having trouble determining where to place navigation for an MVC app. For example, say you have the following structure: Conferences South Eastern Conference Florida Gators Georgia Bulldogs Arkansas Razorbacks Pac-10 USC Hawaii Big East etc... How would you best create a structure for implementing a 'main' navigation and su...

Updating the url of a navigation node in moss programatically

Can anyone see why this should not work: SPSite topNavigationSite = new SPSite("http://moss"); SPWeb topNavigationWeb = topNavigationSite.OpenWeb(); SPNavigationNodeCollection topNavigationBarNodes = topNavigationWeb.Navigation.TopNavigationBar; SPNavigationNode updateNode = topNavigationBarNodes.Navigation.GetNodeByUrl("/about"); updat...

Moss Sub sites navigation elements

My site structure looks like this: - top-level site --sub-site ---page ---page --sub-site ---page I want to disable the link on the tab of each sub-site that currently links to default.aspx so that it acts as a heading to the pages only and not a url that can be clicked. When users navigate over the sub-site tab, the pages drop down m...

Global PreviewKeyDown handler vs local PreviewKeyDown handler

I have a PreviewKeyDown handler on my mainwindow which handles up and down keys so I can navigate with the keyboard between my controls. Now I have the problem that in some Textboxes I also want to use the up/down keys. This seems impossible because the other handler seems to swallow the keys first. Is it possible that when one of thes...

Recommendation for handling navigation through subdomains

I'll like an opinion on the following issue. I'm currently developing an application in which accounts are managed by subdomains (foo.example.com,bar.example.com...). I was wondering which is the best way to enable users to navigate through different accounts. The options I have in mind are: 1) Make each user leave their account subdoma...

JQuery Scrolling/Paging Tabs

I am trying to create a simple tab bar for a site that has the ability to scroll for tabs that do not fit on the page. This is quite simple and does not need to have any ajax or dynamically loaded content...it simply displays all the tabs, and when you click one, it takes you to another page. I have scoured the internet and can not seem...

C# Silverlight 3 - Programmatically Navigate Between Pages?!

Say I have a C# Silverlight 3 application with a number of pages. The first page is called Home, and the second page is called Details. The only way to navigate to details is programmatically. How do I do this?! Looked everywhere for the answer and all i've found are xaml uri mapper implementations.... Help greatly appreciated ...

Javascript Tab Menu with sIFR

Hi There, I am working on a two-level menu like the Dynamic Drive examples on this page. The goal is to show a subnav layer below the main nav onmouseover, reverting to each page's default subnav layer after a timed interval. It works, except for a big problem: I am using sIFR on the main navigation items (<a>s inside of <li>s). The scr...

iPhone: adding segmented control to toolbar instead of buttons within navigation controller?

hey all, im new to iphone programming so if you could help me out I would appreciate it- i have been all over the web and cant find the answer to this. my current setup is like this navigation controller in MainWindow.xib > View in navigation controller in MainWindow.xib calls RootViewController.xib > RootViewController.xib contains a...

ActiveIndex error - suggessions needed

I have a activeindex naviagtion error, while i navigate pages using the next button. This issue is happening, when user goes to the last page again come to the front using back button and go the last page using “next “button. (Multiple iterations causing this issue) Website is acting strange. It gives following flow.. Page1-->page2-->...

emacs equivalent of vim's shift-h and shift-l

i'm wondering if emacs has these cursor movement commands built in or if i'm going to have to write them or find a snippet somewhere. i find them pretty spiffy and use them in vim regularly. i haven't found them in emacs' documentation so far. in vim, they look like this: shift-h -> move cursor to the top of the screen shift-m -> move c...

Snap Open for Emacs?

Hi. I need some script that will find and open files by given pattern within current directory and it's subdirectories, kind of Snap Open for GEdit, fuzzyfinder for VIM and TextMate's Open Files. any ideas? ...

how to add NavigationBar with Editbutton on left to the Uitable In Iphone?

Hi, In my iphone application i have added the Uitable view.While launching the application the table is showing the No. of rows which i want.Now i want to add the Navigation bar to the UiTable,also i want to add the edit button on the left side of the navigation bar. How to add the Navigation bar in the UiTable view in iphone?I dont wa...

WPF navigation via buttons

Question: Is there a way to make a button behave like a hyperlink inside of a user control? I've been searching around for a few days now and haven't found anyone who has addressed this. How do you use a button to navigate in a WPF application? Specifically how do you make a button inside of a user control navigate it's host frame? Ba...

Entities: Adding a Navigation Property between a View and Table

As you can seen in the diagram below there is a one-to-many relationship between the ProjectTask and Dependency table. Entities tries to map every field in the View to fields in the Dependency table, which wouldn't work. Any suggestions on how I can add the navigation property? Thanks, Abe ...

How to properly build a navigation menu that highlights the current page

I've setup a menu for a fairly simple site based on icant.co.uk. It's fairly simple with maybe 5 pages. The small site is mainly a mysql browser for a few tables using MATE. Theres a common.php file that contains the header & footer HTML so thats where I put the code below. The code below highlights the current page on the menu. Its...