navigation

MS MVC login widget.

Context In LAYOUT, i got 2 input fields and submit button. If user authentication is successfully, i want to redirect him somewhere, if not - i want page to be updated with some validation text. Problems Cause widget is supposed to be located in layout, i dont know which is current page, therefore - cant get back on failed authenticat...

Question About Silverlight and how the application is loaded

Hello all In Silverlight 3.0 we can now create applications with multiple pages using the navigation framework, My question is : When we run the application does the whole application gets loaded up at once or it gets loaded up when we navigate to a particular page ? This is probably important for those who want to create an applicati...

More than 1 rightBarButtonItem on navigation bar

I would like to have two rightBarButtonItems on navigation bar. One for Edit and the other for Add. Obviously I can't make it using Interface Builder. Does anybody know how to do it programmatically? Thanks! ...

Navigation view controller question

Below is what I want to implement: The main screen of my app is a UITableView. Each row in the table view is a category, when you click the detail disclosure button in the row, you can see a bunch of items under this category in the category detail view. Now in the main screen, I click the "+" button in navigation bar to create a new c...

Should I use window.navigate or document.location in JavaScript?

What's the preferred method to use to change the location of the current web page using JavaScript? I've seen both window.navigate and document.location used. Are there any differences in behavior? Are there differences in browser implementations? ...

Is there a multilanguage program that will generate emacs-compatible who-calls information?

There is, and has been for awhile, the excellent etags program. For many languages it allows one to generate a TAGS file which emacs can use to jump from a call site to the definition. The versions of etags I have seen support literally oodles of languages. Is there a similar program that can generate who-calls data? For example, giv...

Masterpage with Silverlight (C#) and Legacy ASP.NET (VB.NET) code

I'm working to include Silverlight functionality in a legacy web application based in VB.NET. With the change we are also switching from VB to C# (all new development is C#, so I need a C# answer). I'd like to use some form of master page where the content area can house either a silverlight control or a legacy module/page. The options...

jQuery Navigation Menu Plugin Recommendations

There are 62 jQuery Plugins for menus listed on the jQuery website. I want to select one for my navigation menu that has many users and is well-formed. What is your favorite jQuery Menu Plugin? ...

BlackBerry LongClickListener implementation

I need to implement OnLongClickListener for BlackBerry platform. It may be used for user input (ex phone keyboard implementation) or other functionality (navigation, rewind control, zoom control, etc). There are requirements: target control to listen - custom ButtonField it should be version compiliant with 4.5 and 4.6, so no touchEv...

What is the simplest way to change the image of the selected tab in ASP.NET MVC?

I've seen this question, An easy way to set the active tab , however I'm not sure this is an optimal solution. I'm looking to see how others have handled tab selection in their views/controllers in ASP.NET MVC. What is the simplest way to implement selectable tabs in ASP.NET MVC? I'd like to avoid javascript methods to allow for non...

How can I implement tabs in ASP.NET MVC using query strings?

Duplicate: How can I build a tabbed menu in ASP.NET MVC? If you hover over the tabs of Stackoverflow, you'll see query strings like "?tab=hot", etc... I'm looking to do something similar, and could use some pointers: How can I select tabs based off the query string in ASP.NET MVC? Should I process this in a view, or in a contr...

Does this seem like an alright approach to implementing tabs in ASP.NET MVC?

After looking at how the Orange Tabs ASP.NET MVC demo handles tabs, they have something like: View: <ul id="menu"> <% if (Html.IsCurrentAction("Index", "Home")) { %> <li class="active"><%= Html.ActionLink("Home", "Index", "Home")%></li> <% } else { %> <li><%= Html.ActionLink("Home...

Large footer full of links, is it good?

I see really large footers on some popular sites with a lot of internal navigational links in them (such as Digg). Are there usability studies or at least authoritative opinions on this topic? Should I use large navigational footers in my future projects? ...

How do you illustrate web site navigation?

Hi everyone! I want to know if there is a "standard" way to illustrate a web site navigation (mostly "common" websites, not big web applications). Can I use UML for that? I'm looking to make a diagram of the navigation and not a "working prototype" (like you can do with balsamiq or others) Thanks! ...

For a left navigation panel with Ajax, should I use HTML frames or a DIV?

I was going to have a left navigation panel which uses an ajax request to change the contents of the center panel of the HTML. Should I use HTML frames or simply a "sidebar" DIV? Does it matter? ...

Customizing breadcrumb in sharepoint publishing site with variations

I have a Sharepoint publishing site with variations. The breadcrumb by default shows this: Variation Root > English Site > Some Page What I want to display is: "Home" > Some Page, where Home points to the English site root. Is there a way to achieve this withouth creating a custom server control to do that? ...

How do I get Visual Studio to navigate to the right line from the Error List?

I've created a script that I run as a post-build step that runs jslint and minifys my javascript and css files. I've formatted the output so it shows up in the "Error List" in visual studio, complete with the File, Line and Column fields populated correctly. The problem is, if I double-click on an error, it takes me only to the correct...

Idea on beginning block rewriting for top navigation of a module in magento..

Hi, I am a beginner in magento, have searched for block rewriting in google and forums,but looking for a simple and understandable example or some idea on how to rewrite block for customizing the top navigation of a module.Thanks 4 the help.. ...

How to compile the linked Silverlight Page in project

I have two projects, one is SL navigation application and another one is a SL library which contains some SL navigation page. How could make the navigation application could find the navigation page in the other library when running? I have tried to add the page as link item but it also cannot navigate to the page. ...

access-like data navigation in WPF?!

What would be the best way to build a data-navigation like in access-forms in XAML/C#? Should I build a user control (or even custom control) that I just bind to my collection in which I can put other controls? (hence this question: http://stackoverflow.com/questions/969835/c-user-control-that-can-contain-other-controls-when-using-it ) ...