navigation

android go back to first screen

I have an android app with links (made by linkify) that lead into other screens of my app. I'm wondering what's the best approach to close all of the 'child' activities and go back to the first activity that was originally launched. in otherwords something like this: HomeScreenActivity => Screen1 (via Linkify-link) => Screen2 => Scree...

How to support RTL keyboard navigation correctly in a HTML textarea

I have a piece of HTML code which contains a textarea. I am doing a GVT testing by inputting a mxed characters such as abcأبجABC in this text area. The display of the string is correct in the RTL mode. H...

Please recommend what navigation strategy to use for Spring MVC 3.0.

I'm starting out a Spring MVC 3.0 application and getting controllers and views working nicely, the one thing I now need to do is get navigation working. So for each view I have, it needs to know what item in the "menu" part of the view to highlight and what menu options are available to that view. One thing I thought of was to get the ...

Drop-down menu disappears and comes back only in IE7 problem

Hi all, I have a problem with one of my drop-down menu. Usually they work fine, but this time what happens is the following (and this is only taking place in IE7...ugh): When I put the mouse over the li with class submenu, the ul with id of #nav2 fadesIn(); However, in between the two li's of the secondary nav (#nav2), I have the foll...

Having wordpress dynamically generate pages

Hi all, Is it possible to have Wordpress generate this type of unordered list? <ul id="nav1"> <li><a href="#">item1</a></li> <li><a href="#">item2</a> <ul id="nav2"> <li><a href="#">subitem1</a></li> </ul></li> <li><a href="#">item3</a></li> </ul> Obviously I can do the following: <ul id="nav1"> <?php wp_list_pages(); ?> </ul> But...

Three column <DIV> navigation bar, based on center <DIV>'s width.

What I am trying to accomplish is a navigation bar that is center-aligned, padded on both sides with a left and right padding div. The actual navigation bar is currently an inline-block div containing my tags for links and a left and right transition image, which will lead into the background of the navigation bar to take up the remain...

Having jQuery insert defined content

Hi everyone, I have a navigation menu in xHTML with the following typical structure: <ul id="nav1"> <li><a href="#">item1</a></li> </ul> I have this jQuery script to add a space and a slash after every link: $('#nav1 li,#nav2 li').append('&nbsp;/'); However, after the last link (aka the last li), I want to only add a space (aka &n...

iPhone SDK: Can't specify view to Navigation Controller

Hi everyone, I am working on my first iPhone app and making good progress. But there is one thing I just don't understand. When my app starts it displays a UIView with some functionality on it. This works fine. One of the buttons on that screen is supposed to load a new view (HistoryViewController) which contains a navigation controlle...

Ways to deal with jQuery menu includes on multiple pages

Hi, This isn't a specific code question, but more of a conceptual question. I'm trying to figure out which direction I should go in solving this problem. Here is the site testsite Right now when you hover over interior and click Mastersuite, it takes you to a page for the master suite, which includes the navbar through SSI, but when ...

Can't get a menu nav to align right

Hey all- Something is strange with my CSS - I'm still picking up the basics so if someone can help that would be great! I want the navmenu on this link text to align to the right of the site - Doe's anyone know which tag I should be editing? The Ul/Li of the drop down menu has me confused! ...

IPhone App Load Screen

Hi All, When my application first loads on the iphone it throws up a black screen for about 1/2 a second than it goes into the app. Im just wondering what screen this is that first shows on load? I would like to edit it so i can show my logo on it so the user doesnt just get a black screen. It is an application based off the standard na...

Flash Navigation in an HTML page....storing states?

I have a navigation of my site built in Flash, and now need to remember the state based on which page the user is on. I familiar with flash animation but not great at this sort of actionscripting. I am using the Greensock plugin for my animations. Can anyone point me in the right direction to do this? ...

Gesture Firefox on Mac: Swipe back tiggers Edit-->Find instead of 'Back'

Whenever I use the swipe gesture to the left for browsing back like in Chrome or Safari implements it, Firefox does not browse back instead opens the search/find dialog. The about:config shows which should be fine: browser.gesture.swipe.left; Browser:BackOrBackDuplicate The swipe to the right for 'Forward' however works. How can I...

How do I edit link tabs found on the default user profile page in drupal?

How do I edit link tabs found on the default user profile page in drupal? I'm trying to avoid having to create a user_profile.tpl.php file and rebuild the entire profile from scratch. If there's an easier way to do this, I'd rather do that. But, if I'm forced to create a custom template, how do I control the menu tabs for the profile? I ...

how to make drupal pages into menus and submenus like administrator menu

Hi everyone, I'am new to Drupal, i just want to create a website which contains pages like about us, contact us and other static information that may be changed after a long time. Now i can create the pages and sub pages to main pages. The links are displaying on the top of the logo and the sub pages were showing on the side of the mai...

Populating Nagivation Tabs with SQL?

I'm looking for some kind of Nav tab (vertical) that allows it to be populated by SQL. For example, in the SQL table there would be a column for title (which is the title of the tab) and a column for the contents of the tab. I have tried building one myself, but I have no idea how to fit it in a nav bar because usually I'd do a while l...

Why isn't my UL Menu working?

Here's the HTML: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"&gt; <html xmlns="http://www.w3.org/1999/xhtml"&gt; <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8"/> <title>Hi World!</title> <link rel="stylesheet" type="text/css" href=...

ASP.NET MVC and navigation

I'm trying to learn ASP.NET MVC, and I want to have menus highlighted on the item that is currently selected. I know I did this before in web forms (although I don't actually remember how at the moment, but somehow with the sitemap). But how can this be done in MVC? It seems like such a basic thing it should be simple to do in MVC? Sur...

Reloading the same page passing another parameters

Hello. I'm developing a Windows Phone application. I have defined this on App.xaml: <nav:UriMapping Uri="/Destinations" MappedUri="/Views/Tourism/Common.xaml?Type=1"/> <nav:UriMapping Uri="/Points" MappedUri="/Views/Tourism/Common.xaml?Type=2"/> When the user is on Points, and I do the following: NavigationService.Navigate(new Uri(...

How to calculate turning direction

I have a three lat-lon coordinates that make up two line segment A to B to C. I also found a function that can return north-bearing of a line segment A-B or B-C in -180 to 180 manner. However, I'm having trouble to determine when a car reaches from A to B, should it turn right or left to continue to C. ...