Tuesday, January 25, 2011

Customising My Site in MOSS 2010

http://blogs.msdn.com/b/spsocial/archive/2010/03/30/customizing-my-sites-in-microsoft-sharepoint-2010.aspx

Friday, January 21, 2011

Viewing Documents Checked Out to Me

To view documents that are checked out to you navigate to the page: /_layouts/sitemanager.aspx and select the view 'Checked out to me'

Sunday, January 16, 2011

Open a Closed Web Part

To open a 'closed' web part:
  1. Open the page in 'Edit' mode.
  2. Click on a zone 'Add a web part' link.
  3. In the 'Categories' list select 'Closed Web Parts'
  4. Add the web part to the page.

Friday, January 07, 2011

Hide list web part column headers

To hide list column headers add the following CSS to a hidden content editor web part on the page:

<style>
.ms-viewheadertr { display: none;}
</style>

Creating Web Part Pages with a Quick Launch

Web Part Pages in Team Sites by default do not show the Quick Launch left navigation. Basically the panel is hidden by a CSS style written into the page <head>:

<style type="text/css">
body #s4-leftpanel {
 display:none;
}
.s4-ca {
 margin-left:0px;
}
style>


and two placeholders in the <body>, which override the masterpage placeholders:

<asp:Content ContentPlaceHolderId="PlaceHolderLeftNavBar" runat="server"></asp:Content>
<asp:Content ContentPlaceHolderId="PlaceHolderNavSpacer" runat="server"></asp:Content>



To show the Quick Launch open the page in SharePoint Designer and remove the style and the placeholders.