navigation

Adding BarButtons to a UINavigationBar after presenting a modal view controller.

I'm using the template for a "Utility Application". In the "FlipSideViewController", I added an IBOutlet for a UINavigationController, navController. In the code, I added the navController just fine. The rootViewController loads perfectly: navController.viewControllers = [[NSArray arrayWithObject:rootViewController] retain]; [self.vi...

C# creating a Class, having objects as member variables? I think the objects are garbage collected?

So I have a class that has the following member variables. I have get and set functions for every piece of data in this class. public class NavigationMesh { public Vector3 node; int weight; bool isWall; bool hasTreasure; public NavigationMesh(int x, int y, int z, bool setWall, bool setTreasure) { //defau...

navigation framework in silverlight 3 skipping constructor when usercontrol is of a derived type

Hi: I am using the NavigationFramework in Silverlight 3, and am running into issues where the constructor of the UserControl in the xaml I am loading is not being called, and I believe this is because the UserControl in the xaml I am calling is actually derived from another user control. I have stepped through the debugger with specifi...

URL Navigation in an AJAX Based Website?

I would like to develop a website with fully ajax navigation, but this means that users cannot share, bookmark, or go straight to certain content. I noticed a few websites (Gmail, Thesixtyone, Youtube) are using hash tags to create custom urls for different page configurations. What is this technique called, and how can I implement thi...

Create Slideshow with Fade Transition and Navigation

Hello! I am trying to create a slideshow like the one on this site: http://www.marthastewart.com/ However, I would like to use JavaScript and CSS instead of Flash. I would be super grateful for any suggestions on how to do this. I am currently using the InnerFade plugin, which works great for the slideshow part, but I can't figure out...

Issue with CSS drop down

Im having a little issue with the css drop down in my navigation. The products nav tab is suppose to have the drop down. Additionally, the nav works fine but it seems that the sub categories arent displaying correctly. HERE IS LINK Here is my navigation code: HTML <div id="nav"> <ul id="navlist"> <li><a href="home.html" ...

SharePoint Custom Current Navigation / PortalSiteMapProvider

I'm working on a custom current (left) navigation on a SharePoint solution. What I need is that the root of the navigation is a variation web, the immediate child of the root web. All the sites and pages which are immediate children of this variation should be visible, though not expanded. Only sites which are ancestors of the current s...

SharePoint SiteMapProvider - Help

I have a sharepoint portal with a root site and 3 subsites, to implement the horizontal menu of the portal i use the GlobalNavSiteMapProvider. For the breadcrumb i chose to use the CurrentNavSiteMapProviderNoEncode. In the subsites navegation, i select the options "Show Pages" (if i dont check this options the breacrumb did not show the...

Is it possible to turn a View-Based App into a navigation-Based App?

I am close to finishing my first application (a UITableView style one) on the iphone but have realised it will look much better, and stand a far better chance of getting through the approval process, if it is presented as a navigation-based app rather than a view-based one - in hindsight my initial choice is not really suitable... Is it...

php page navigation by serial number

Can anyone help in this php page navigation script switch on counting normal serial number? In this script there is a var called "page_id" - I want this var to store the real page link by order like 0, 1, 2, 3, 4, 5 ... <? $onpage = 10; // on page /* $pagerecord - display records per page $activepage - current page $records - total ...

SEAM nagivation based on function with parameters

How do you setup a navigation rule based on a function with parameters in SEAM ? For example <page view-id="/firstPage.xhtml" back="enabled"> <navigation from-action="#{actionBean.fetchItem(int index)}"> <redirect view-id="/itemDetail.xhtml" /> </navigation> </page> Thanks ...

XBAP refresh event

Hi. I am developing an xbap application and have run into a problem with users refreshing the application using F5, which results in an immediate application crash. The workaround is to use the browsers refresh button. This reloads the application as expected. What exactly happens when the user presses F5 in an xbap? Is there any way...

NAVT WordPress Plugin - Not working on index.php

Hi there, I need to move my wordpress home page onto the actual index.php file but for some bizarre reason the NAVT plugin doesn't work on there. It also doesn't work on index.php when I put it in the header.php file. It works on all other pages as normal. ALSO, it does work in the footer.php file when viewing the index.php file so th...

Sliding "pull-down" navigation - what do I use? How do I implement? jQuery?

I'm new to Javascript and jQuery, but I'm learning. Here is what I'd like to accomplish: I have a row of navigation "pull-down" tabs that I'd like to animate. Some sliders will have text links to sub-pages and some will not. The bottom portion of the tab should be clickable to go to the main page. Then the sub-page, text links should al...

How to organize product catalog site in Drupal 6?

Hello there, please advice me how to organize product catalog site with such structure (this is pages which should be in site map): - Home page - About Us -- Team -- Contacts - Products -- Category --- Product ---- Overview ---- Photo gallery ---- Variants -- Category --- Subcategory --- Product ---- Overview ---- Photo gallery ---- Var...

Zend Navigation not working on dynamic pages

XML <config> <nav> <label>Home</label> <route>default</route> <module>default</module> <controller>index</controller> <action>index</action> <pages> <clips> <label>Clips</label> <module>video</module> <controller>clip</control...

navigation between screens Iphone programming

Hi, I don't know if my question will be clear or not, but i'm starting basic stuff with iphone programming, and i'm trying to understand how to go from a screen to another. lets say i have a screen with a "next page" button and another page with a "return" button. I have a general idea of how to do this, but I don't know how to put it ...

JSF: Using same jsp page for different outcomes

Would it be possible to use a navigation-case as shown below with the same view-id but different from-outcomes? In the managed bean, I wanted to compare the from-outcome values and decide on the group panel that I would display on the page. How can I get the from-outcome value in my managed bean? <navigation-case> <from-outcome>modi...

Can you use data binding with the Content property of a WPF Frame?

I can use data binding to set the initial Content of a WPF Frame, but subsequent changes to the the bound property (implemented using INotifyPropertyChange) do not seem to change the content. Also, does anyone know if binding directly to the Content property in this way will cause the bound item to appear in the Frame or NavigationWindo...

Recipes/tutorials/libraries for GUI-like terminal navigation (vim/lynx-style)?

Several console based applications like vim or lynx offer a rich user interface which enables the user to navigate freely around the console, manipulate data directly on screen, access menus and much more, similar to "modern" gui applications. How is that being achieved in principal on Unix/Linux with C++? Do you directly manipulate some...