navigation

Extending SharePoint Breadcrumbs across multiple site collections

I’ve been trying to find a way to extend SharePoint breadcrumbs across multiple site collections, and I’ve been unable to find a way. I can set the portal site connection setting on the site collection to link to its parent site collection. But, that will not show only one parent site collection. Here’s an example of the type of setup...

Is it possible to have multiple target pages with cross page posting?

I have a web page that uses cross page posting to post to a different target page. A new requirement has arisen that means that there could be 4 different target pages to post too depending on what data was entered on the client. Is it possible to somehow change the cross page posting target dynamically on the client? From looking at ...

Creating a dynamic menu with jQuery

we are creating a new website. We would like to make up the site with iframes that represent different parts of the page, navigation, content, headers etc. However our navigation menu has some "context" built into it. That is if you are the "About" section the button/link for About will be highlighted to indicate that this is your loca...

Silverlight 3 Beta, NavigationService in the ViewModel

Hi, im developing a silverlight 3 beta navigation application, so i've gone with a slight variation of the MVVM pattern :) (all-in-one viewmodel), using prism, and stuff. Question: How do i navigate to a different "NavigationPage" in the viewmodel Now to cut a long story short, the viewmodel is declared as a page resource. <navigation...

How to click a Javascript button that doesn't exist

I am trying to use WebBrowser control to click a button that doesn't have any anchor text or anything I looked at the source and saw this. var _tm7 = new TabMenu( 'TempoTabMenuControl', 'TempoTabMenuControlRow', ['Add Edit'], 0); _tm7.Add(new TabMenuItem('View Menu', '/Edit/NewUI.html?tstudio=45', 'main'), true); _tm7.Ad...

Using SharePoint subsites and audience to target content... how?

I would like to show different tabs in the top navigation of a SharePoint site depending on what 'Audience' the user is in. I can do this fine for pages but for subsites I cannot find an option. Googling reveals a work around, hiding the subsite and adding a link to the subsite URL. There has to be a better way than this! ...

How can jQuery show different items based on a variable

I want to create a navigation bar that cna be used on every page. Most nav items have the same styling, however the nav item that relates to the current page has differen tstyleing. I want to be able to use jQuery to read a meta tag and display the correct styling. I have pasted my code below - this doesn't seem to work: <!DOCTYPE htm...

SharePoint content targeting, is it possible to have multiple views per user?

Our SharePoint site has a couple of broad groups that use it. In essence they are managers and users. We have different tabs viewable to the different people. We now have a requirement for Managers to be able to pretend for a while that they are users, and see what users would normally see. We cannot think of a way of achieving this tog...

Why on earth do I have to pass RequestContext in all of my responses?

I want to highlight the current page in the navigation menu. Obviously I need to give the menu links a class like 'active' when you are on their page. This is a classic problem and I've seen many solutions proposed. My problem is I hate all of them and consider none of them to be very DRY. For example: @register.simple_tag def active(re...

Internet Explorer find out when a user navigates away from the page

I'm using VS2008 (C++) to create an IE plugin that creates a child window. It's like a normal explorer window, but customized to fit my needs. I want to destroy the window when the user navigates away from the page, by calling DestroyWindow(). Unfortunately, I don't know how to detect if the user has actually navigated away. Is there an ...

Multiple pages tutorial in GWT

I just start learning GWT and wondering how do i make different HTML pages in my GWT application. For example i want to create application for a book store. In this application I'll have three pages: 1) Home pages where i will welcome user and offer him books 2) Page to browse books by categories and view details (use GWT widgets) 3) Che...

JSF: navigation

I have to warn you: the question may be rather silly, but I can't seem to wrap my head around it right now. I have two managed beans, let's say A and B: class A { private Date d8; // ...getters & setters public String search() { // search by d8 } } class B { private Date d9; //...getters & setters publi...

How to condition navigation in seam on a parameter

I have a Seam application originally generated by seam-gen with a view Search.xhtml. Search.xhtml has a number of input fields, half of which are bound to the Office entity and half to the Devices entity. For example, if you enter a hostname, it is bound to a field in Devices, if you enter a City, it is bound to a field in Office. The...

"Back to top" link, is it useful?

Many sites show a "Back to top" link in their footer. Others, even worse, have that link throughout the page. Personally, I never used any of them, but probably it's me to be strange. Do you think it is an useful link? UPDATE: when I rarely need to go straight back to the top I use CMD + upwards arrow ...

How can I prevent the user from navigating back to a previous page?

I have an ASP.NET MVC application, with three views: view1, view2, view3. The logic way for the user to navigate through these is: view1 -> view2 -> view3. When the user reaches view3, then I must prevent them from loading view2, even by using the "Back" button in their browser. What is a good, browser-independent means of implementing...

Return to calling page from a shared page

I have a shared page in my ASP.NET MVC app that can be accessed from several different pages in my app. If I want the user to return to their original page after they have done their business on the shared page, what's the best way to figure out where the user was, and tell the app to go there? Note that I'm currently doing this for the...

What is the best way to manage duplicate code in static HTML websites

Hello, I am managing a legacy website with a lot of static HTML websites, no server side scripting, just plain HTML/CSS, minimal javascript. I found it a huge waste of time to change the same piece of code numerous times in different pages. For example, when something in the menu changes, since the menu is just static text in each docum...

Navigating through list items

I have the following code: var from = 0, step = 5; function showNext(list) { list .find('li').hide().end() .find('li:lt(' + (from + step) + '):not(li:lt(' + from + '))') .show(); from += step; } // show initial set showNext($('ul')); // clicking on the 'more' link: $('#more').click(function(e) { e.preventDefault(); ...

how to implement breadcrumbs using Zend_Navigation

what are the best practices/suggestions/techniques to implement a breadcrumb for a ZendFramework application using Zend_Navigation? how and where is the best method to define the page hierarchy? ...

Navigation Menu - ideas?!

Hey there I'm currently teaching myself to create websites - this particular site is for a that business I have. I'm using Dreamweaver CS3 to do so. I need some help with the horizontal navigation menu I am trying to create. I have three main categories within my website, each with their own small image to represent them. I want to hav...