views:

3106

answers:

3

In SharePoint, it is easy to set up a List webpart consisting of Links to other documents, folders, sites, etc. Unfortunately, when clicking these links, the default behavior is for the page to open in the current browser window. That is, it does NOT open the page in a new instance of the browser. This has proven annoying for a number of the users on my site.

Does anyone know of a way to have the default behavior be to open in a NEW browser window?

I'm hoping this is something that can be set in SharePoint rather than having users need to adjust some sort of setting in their browser.

+1  A: 

It is not possible with the default Link List web part, but there are resources describing how to extend Sharepoint server-side to add this functionality.

Share Point Links Open in New Window
Changing Link Lists in Sharepoint 2007

David Hill
+2  A: 

You can edit the page in SharePoint designer, convert the List View web part to an XSLT Data View. (by right click + "Convert to XSLT Data View").
Then you can edit the XSLT - find the A tag and add an attribute target="_blank"

vitule
Good call, didn't think of that.
David Hill
+1  A: 

Please think long and hard before doing this. Opening new windows usually violates the principle of least surprise for the user, and doesn't really achieve what people are usually hoping to do by popping a new window (i.e. they don't really "stick" to your original site any better just because it's sitting in a now-hidden window behind the one you popped up).

Also, the solution would probably be different depneding on your version of SharePoint. You may want to edit to the question to indicate WSS 2/3, SPS, MOSS, etc.

Sam Yates
unless your users are asking for it. and then you'll do it. :-)
vitule