navigation

JSF external linking

I was wondering if is it possible to external link - something like domain.tld/jsfview - to a specific jsf view/page. I don't want the start page of my jsf app, which would be triggered by <navigation-rule> <navigation-case> <from-outcome>start</from-outcome> <to-view-id>/jsf/index.xhtml</to-view-id> </navigation-case> </na...

asp.net mvc 2 menus between 4 controllers

hello I want to have 2 navigation menus- One will be a "Top Level" menu, with 4 choices, each pointing to the index of a separate controller. I would like to have a "Controller-Level" sub-menu on the left of my screen. This will correspond to links relevant to the controller selected in the top menu. The "controller-level" menu is n...

how to re-draw the table in navigation controller xcode

i want to update or re-draw the table in firstView,when i go back to first view from second view. i use navigation controller and popViewControllerAnimated is used to back to first view. i dont know how to call draw table function when it is back to previous view. thanks ...

Navigation div issue

I'm working on a web site and im having trouble with the left navigation. As you can see here http://animactions.ca/test/Desktop/ the left navigation menu does not go to the bottom, it stops after the content. I would need it to stop at the bottom of the page. Here is the css: /* CSS layout */ body { margin: 0; padding: 0; }...

SiteMap and Url routing

I have a question similar to the one described here: ASP.NET URL Routing with WebForms - Using the SiteMap My ASP.Net WebForms webapplication has a Sitemap, similar to this: <?xml version="1.0" encoding="utf-8" ?> <siteMap xmlns="http://schemas.microsoft.com/AspNet/SiteMap-File-1.0" > <siteMapNode title="Root"> <siteMapNode url="...

What do I do if I want UINavigationController functionality without a navigation controller?

I know that a UINavigationController has good view pushing methods. But let's say that I don't want to use a UINavigationController because I don't want the bar on the top of the screen. Is there a specific way to push and pop views as I want them? Also, when should I use presentModalViewController and when shouldn't I? Thanks, Anthony...

jQuery Expandable/Accordion Nav Menu with Multiple Levels and Remembers Menu State

I need to make an expandable menu that has multiple levels using jQuery. It also needs to remember the last state it was open to if you refresh the page or jump to a new page. I know there is the jQuery Cookies plugin but I'm not sure if the client wants cookies to be used. I found an example online but I can't figure out how to accommod...

Hisory points in MVC2

How can we create history points for each view in MVC? And how can we delete the previous history point while navigating a web site? Thanks, kaps ...

CSS drop down menu

Been trying to get a "pure css" dropdown been trying for days to get a "simple" css drop down nav going can get the top level displayed and the second level hiding but can't make the sub items display on hover?? any help much appreciated sample Isolated is here:: css and html below paste bin http://www.webdevout.net/test?01t ...

Cakephp pagination problem with next/previous

Hello, Let's say I have this page with pagination: localhost/fr/users/index/page:1 I see the correct results for page 1 based on how I have defined the paginate var in my controller. But when I click the next button, the url change to page:2 but the results don't change and are the same as page:1, same thing for page:3, page:4 and so ...

What is the best dropdown navigation alternative to Superfish?

I know superfish is amazing, but the terrible CMS we are using conflicts with it in IE6 (hovers break in IE6 when the CMS applies a selected class to the li). I don't know how, but feel free to look at valitics.com/test1. It can be mootools, scriptaculous, whatever, I just need a good alternative to superfish. ...

Dropdown Menus In Drupal?

Hi, I have my Drupal site here so far: selkirk.treethink.net Each Primary Link at the top has a bunch of other primary links under it (sub links) I need to display these sub links when you hover over the parent primary link in a dropdown menu. Everything is in the primary links but there are parents (what you see at the top of the dem...

SharePoint QuickLaunch and TopNavigationBar dissapearing

I am completely puzzled with this: I have a custom SharePoint site with QuickLaunch on the left and Top Navigation Bar (which are of course visible by default). This custom site has several sub-sites, which all inherit navigation from the root site. Everything works fine, but after application pool recycle both menus on the left and o...

Best practices for "Back" navigation links in JSF

Hey there, What is the best way to make "Back" links, so that the application stays consistent after navigation. onclick="history.go(-1)". Is this very harmful? Using a stack in a backing bean that pops you the navigation case of the last view. You can do this by setting the navigation case with <f:setPropertyActionListener>. None of ...

Ipod Library Access and subview removal in this code

I'm a 14 year old modifying an apple example code(my version can be found here for a school project, and I tried to put in ipod library access(It doesn't actually do anything yet, it's just supposed to show the access pop-up thing) and I tested it on-device, but it doesn't work. XCode shows no errors, but it doesn't work, even OD. Any re...

Address bar input vs. Link

Is there a way to interrogate a request to determine the method of navigation ? (using a LAMP configuration, PHP) In other words... I would like to know whether the entry was hand typed into the address bar, or a link/bookmark was used. ...

Bread-crumb style navigation for Winforms

Does anybody know of a bread-crumb style navigation for Winforms like the one from DotNetBar. http://www.devcomponents.com/dotnetbar/BreadCrumbHorizontalTreeControl.aspx I really like that control. However I am using a other UI library already and just for this control I do not want a reference to another 4 MB lib. I just need this co...

UINavigationController back button issue.

Hi My Application have navigation controller and table views. When the back button is clicked and the view is popped out from controller stack, i noticed that the table events are not executed (eg: cellForRowIndexPath). Is there anyway that these events are execueted when view is popped out. This is the code i use for pushing the view...

PHP Switch Nav system - how can i set it up to use 2 GET variables

I use a the following PHP switch for my navigation menu: <?php include("header.php"); if (! isset($_GET['page'])) { include('./home.php'); } else { $page = $_GET['page']; switch($page) { case 'about': include('./about.php'); break; ...

Is there an easier way to add menu items to a wordpress navigation menu?

I'm new to Wordpress or CMS's for that matter but I'm used to the way Joomla's menus work. I have downloaded this Wordpress theme that had a navigation menu with 4 pages. So I thought I'd create a new page and select the main page as the parent. But after I go to the site the navigation doesn't show the link to the page. So I took a lo...