navigation

Command to center screen horizontally around cursor on emacs?

I'm familiar with and use very frequently the C-l (recenter-top-bottom) to Move current line to window center, top, and bottom, successively. I'd like to have an equivalent command to move the current column to window center, left and right borders, successively. Either built-in or a snippet of Elisp. ...

Pushing a New View w/o NavigationController

I'm missing something. I'm trying to bring in a new view after pressing a button on the first one. Apparently the following code only works in certain situations: SecondViewController *controller = [[SecondViewController alloc] initWithNibName:@"SecondViewController" bundle:nil]; [[self navigationController] pushViewController:controlle...

WPF Focus Navigation Wrapping

Is there a way to force Focus Navigation (as controlled by the Tab key or MoveFocus method) to wrap inside a given container? I have included code which demonstrates this problem below. What is the easiest way to make Tab move focus from TextBox "Charlie" to TextBox "Able" (and visa-versa for Shift+Tab on TextBox "Able") rather than mo...

Jquery: When Hover on Menu Item, Display Text

Hi, I'm new to JQuery, but wish to use it in a site that I'm building. When the user mouses over an item in the menu with li class hovertriggerssubhead, I want to display some text below it, located in the div (nested inside the li) with id NavSubhead. I have looked at several examples of this, namely in the cookbook in the FAQ of the J...

Find an element in DataTemplate applied to TabItem

Hi all, I got a problem trying to find an element declared in DataTemplate, that after was applied like a ContentTemplate to TabItem object. I saw that there is already some solutions in regard of this problem, but no one of them actually works in my case, and I would like to understand why (obviously I make mistake in some place) Here ...

Changing styles on navigation links - including next and prev buttons

Hi I'm currently working on a website for a Danish company. The content is all in one page and I've included some jQuery-scrolling and stuff. Works nice! For the menu I'm asked to programme the elements so the active element is bold. That I've done too. The problem comes here: The client wants a home button and a next and previous but...

Adding Child items to DevExpress XtraNavBar

I am using the XtraNavBar from DevExpress and I would like to figure out how to add a child item to an existing item. I have added Groups and Items to those Groups but I have been unable to figure out how to add child items to the Items. Has anyone else done this? Can it be done either through code or any other way? (for reference...

Click Nav Menu is Misbehaving

I posted here recently when I was having trouble getting a script to work. It was supposed to, with the aid of PHP, detect what page the user was on, select the nav menu list item with the same id, and then set the id of the list item to 'cur', which would attract the appropriate styling. I got that to work, as can be seen here: link t...

zend_navigation and onclick attribute

is there any way how to push into zend_navigation page type mvc or uri and give it onclick attribute? array ( 'type' => 'uri', 'label' => 'Map', 'title' => 'Map', 'uri' => '#', 'click' => 'alert("show map");' ) i have sub sub menus included links which fires only modal. till yet i use my own "navigation" soluti...

Processing TeleAtlas .poi files

Hello, I have a set of .poi files from teleatlas. Is there a way to convert these type of binary file to another format? I have searched online for hours with no success. Any help appreciated. Regards, ...

Optimal Multi-page Navigation

I have encountered many web sites and even desktop applications that have a breadcrumb type control to navigate pages of information. For example, given X pages where the user is currently on page N, SOFU has a bread crumb control that presents page navigation in the form of: (X[N-1])(X[0])...(X[N-2])(X[N-1])(X[N])(X[N+1])(X[N+2])...(...

Opening UINavigationController UITable from a simple UIView

Hey all, This problem has been driving me nuts all day and there has to be a simple answer. I need to create a login page that then provides access to a UITableView which will then be controlled by a UINavigationController. The question is how do I get and initially loaded login page (UIViewController - as created by the "View-base...

Tab bar + Navigation Bar

I have a two tab bar,In first tab ,i can drill down more than three... but in second tab i cannot drill down more than one.. Any ideas? code: DemoAppdelegate.m - (void)applicationDidFinishLaunching:(UIApplication *)application { [window addSubview:tabBarController.view]; } First tab controller is "FirstViewController" in FirstViewCont...

Losing backward navigation in ASP.NET

I have an ASP.NET2.0 web page with a Submit button. When the user clicks, I generate an XML file on the fly and return that as a result. Here is the code: protected void submitBtn_Click(object sender, EventArgs e) { string result = this.ProduceMyXmlResult(); this.Response.Clear(); this.Response.StatusCode =...

Sharepoint navigation menu collapse

Does anyone know when in sharepoint you´ve created a navigation structure in site settings navigation / that i can only add a page under a heading and have to hide the page which is the heading? How I can make the menu collapse when clicking on the top menu rather then immediate display? I want to display the second level when clicking...

subsonic . navigate among records ,view,query

hello everybody i'm some newbie in this matter of .net i'm trying understand this new paradigm i began with linq for SQl but i found this library, kind of framework of T4 more specifically: subsonic T4 i think it could be very usefull but the support docs outside are very scarce my first intention is use them in the very simple form...

UITabBarController/UINavigationController missing title

I have a UINavigationController and UITabBarController visible at the same time. Both the tab bar buttons and the navigation bar take their text from the title of the currently active view. - (void)viewDidLoad { [super viewDidLoad]; self.title = @"View Title"; However I want the different. In fact I'd like the navigation con...

Zend_Navigation url generation issue

I use Navigation component for site menus. I also use let zend figure-out the selected menu item from request parameters - I guess this is done automatically. The only problem is, that for this to work, action and controller have to be specified in navigation configuration for every node. This also means that when zend generates links fr...

Create the desired URL - Should I Loop ?

Hi there, I am looking at writing an ecommerce platform just for working practice and a small project of mine. I am at the stage where i want to start writing the URL's and SEO friednly URL's. My problem is i have wrote the system to have unlimited categories / sub categories and making my navigation is causing me some problems. my id...

Point at a given Run flow document wpf

Hi, I've got a FlowDocumentPageViewer with dynamic content. The flow document is made of paragraphs, each run in the paragraph contains a word. I'm trying to navigate to a given run, so I got the method which will return me the run I want. But once I got this Run how can I navigate to it, with automatic page change? For example I sele...