SharePoint Blog - René Hézser

Anmelden  RSS Feed RSS Feed
Startet die Suche

Dec 242009

Merry Christmas

image

Merry Christmas to all of you!


Published: 12/24/2009  7:54 PM | 0  Comments | 0  Links to this post
Tagged as: Sonstiges

Dec 152009

SPList.DefaultView

The SDK says: “An SPView object that represents the default view.”

But if you want to change e.g. the ViewFields from the default view, you cannot use SPList.DefaultView.ViewFields.Add(fieldname);

Instead use

SPView defaultView = list.Views[list.DefaultView.ID];
defaultView.ViewFields.Add(fieldname); // internal field name
defaultView.Update();

to modify the default view. It seems the DefaultView property cannot modify the View itself.


Published: 12/15/2009  9:07 PM | 2  Comments | 0  Links to this post
Tagged as: SharePoint

Dec 082009

Install SharePoint 2010 Language Pack on Windows 7

Microsoft has released Language Packs for SP 2010. Thank you. Now I can try to upgrade existing Installations :-)

But wait. The Languages Packs won’t install on my Windows 7. It says they need a Windows Server 2008 x64. Right. But it’s the same with the Server itself. We have to modify the config file, to support an installation on a non Server OS.

Setting Up the Development Environment for SharePoint Server: http://msdn.microsoft.com/en-us/library/ee554869%28office.14%29.aspx

  1. Extract the Language Pack with “SharePointLanguagePack.exe /extract:C:\ExtractedLanguagePack”
  2. Modify the config.xml file in Files\Setup folder
  3. Add “<Setting Id="AllowWindowsClientInstall" Value="True"/>”
  4. Install the Language Pack
    1. SharePoint Foundation
    2. SharePoint Server
    3. Run Configuration Wizard

Published: 12/8/2009  8:55 PM | 1  Comment | 0  Links to this post
Tagged as: SharePoint