Archive

Archive for June, 2009

Service Pack 2 Update for the expiration date issue

June 26th, 2009 No comments

Microsoft SharePoint Product Group announced availability of SP2 update which solve expiration date issue:

The update can be applied before or after Service Pack 2 installation.  If the update is applied prior to installing Service Pack 2 it will prevent the expiration date from being improperly activated during installation of Service Pack 2, if it is applied after Service Pack 2 it will remove the expiration date incorrectly set during installation of Service Pack 2.

The update is applicable to all of the products that this issue affected (see the list in the KB linked below).

Installation instructions and download links for x86 and x64 are available in this KB: http://support.microsoft.com/kb/971620

The direct download link for x86 is: http://download.microsoft.com/download/2/F/5/2F51AB71-1325-49D2-9CB9-18DEC4780E99/office2007-kb971620-fullfile-x86-glb.exe

And for x64: http://download.microsoft.com/download/5/B/B/5BBD34A9-C528-42B0-8A5F-9A8997B25C32/office2007-kb971620-fullfile-x64-glb.exe

We will be updating the existing Service Pack 2 download package with a new package that includes this fix within the next 4-6 weeks.

source: Microsoft SharePoint Team Blog: Service Pack 2 Update.

Categories: Sharepoint Tags:

SPCodeSnippets By : Ayman El-Hattab

June 11th, 2009 No comments

Didn’t you find yourself writing SPContext.Current.Site, SPSecurity.RunWithElevatedPrivileges and list.Items.Add() more than hundred times in most of your SharePoint projects ?
So Why Reinvent the wheel ?
SPCodeSnippets provides the most commonly used SharePoint code snippets that follow SharePoint development best practices.
Just integrate them into your visual studio , reuse the code and speed up your SharePoint development.

How to use SPCodeSnippets:

spcodesnippets

more info:

http://spcodesnippets.codeplex.com/

http://ayman-elhattab.blogspot.com

Categories: Sharepoint Tags:

Setting View Column Width with jQuery

June 10th, 2009 No comments

Kjell-Sverre Jerijærvi publish on his blog simple solution which set column width in lists and libraries through jQuery without converting view into XSLT Data View in SPD. Magical piece of code looks very simple:

<!–ADJUST TABLE COLUMN WIDTH–>
<script src=”
http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.min.js” type=”text/javascript”></script>
<script type=”text/javascript”>
$(function(){
$(“TH.ms-vh2-nograd:contains(‘Status description’)”).css(“width”, “150px”);
$(“TH.ms-vb:contains(‘Type of Work’)”).css(“width”, “150px”);
});
</script>

whole article is on link SharePoint jQuery: Setting View Column Width

Categories: Sharepoint Tags: ,

Interactive Stsadm Technical Reference

June 7th, 2009 No comments
Categories: Sharepoint Tags: