Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can you have SharePoint Link Lists default to opening in a new window?

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.

like image 377
LunaCrescens Avatar asked Sep 19 '08 16:09

LunaCrescens


People also ask

How do I make quick links open in a new tab in SharePoint?

As a workaround to control behavior when opening links in SharePoint, I would suggest you try: Press Ctrl and Click to open a link in a new tab. Press Shift and Click to open a link in a new window.

Can you link to a specific section of a SharePoint page?

A SharePoint anchor link allows linking to a specific point or section within a piece of content on your SharePoint Online pages, enabling you to direct a reader's focus exactly where you want.


2 Answers

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

like image 109
David Hill Avatar answered Oct 22 '22 10:10

David Hill


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"

like image 31
vitule Avatar answered Oct 22 '22 08:10

vitule