Category Archives: SharePoint

Debugging mode does not run in SharePoint

What you need to do is follow the steps below to try again the debugging mode Start –> Run –> Enter %systemroot%\assembly\gac –> [ENTER]. From there, go up one folder, then into GAC_MSIL folder. Paste the pdb file with the … Continue reading

Posted in SharePoint | Tagged | Leave a comment

Override Global css from SharePoint 2010 to hide left navigation

  If you look for hide the left navigation from SharePoint 2010, definitely you can use the below stylesheet to override the global css. Add this code in the content editor and apply the changes: <Style> #s4-leftpanel { display: none; … Continue reading

Posted in SharePoint, SharePoint 2010 | Tagged | Leave a comment

Using SharePoint Modal Dialog

SharePoint 2010 have introduces the new dialog framework for assist users to stay in the context of the page without navigate away from other page. The JavaScript object model provides the SP.UI.ModalDialog class to work with the dialog framework. In … Continue reading

Posted in SharePoint 2010 | Tagged | Leave a comment

How to setup form library at SharePoint 2010 Foundation?

Step 1: Create Web Application 1. Access SharePoint Central Administration 2. Click on Application Management and then click on manage web applications. 3. Click on new button to create a new web site. 4. Leave everything as default except under … Continue reading

Posted in SharePoint 2010 | Tagged , | Leave a comment

SP Services(JQuery)–GetListItems for SharePoint Web Services

SPServices is a JQuery library abstract SharePoint web services and make them easy to use it. For more details about JQuery’s SP Services, click here. You able to learn more what are the features in codeplex. In codeplex, there are … Continue reading

Posted in SharePoint | Tagged , | 2 Comments

Calling a SAP PI Web Service (using WCF bindings) from a SharePoint 2007 Workflow

There are 2 rules when calling a SAP PI web service from a SharePoint workflow: You have to use custom bindings to get authentication to work. After you’ve added your web service via the "Add Service" dialog, you have to … Continue reading

Posted in SAP, SharePoint, Sharepoint 2007 | Tagged | Leave a comment

Manually installation package solution in SharePoint 2010

Step 1: Add Solution to SharePoint Farm Log in to a SharePoint server in your farm as a SharePoint farm administrator. Run the following command from a Windows command prompt: C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\14\BIN\stsadm -o addsolution -filename "<full_path_to_your_sharepoint_installer_files>\Atlassian.Confluence.SharePoint2010.wsp" … Continue reading

Posted in SharePoint, SharePoint 2010 | Tagged | Leave a comment

How to find GUID of SharePoint List?

Go to respective List – >Click on Settings Menu – > Click on List Settings Link- > click on “Audience targeting settings” link under General Settings. -> Checked "Enable audience targeting -> Ok button. Now, we are in Audience targeting … Continue reading

Posted in SharePoint, Sharepoint 2007 | Tagged | Leave a comment

Setup SharePoint site collection by using Powershell

Write-Host # define variables for script $SiteTitle = "Lab x – Best Practices" $SiteUrl = "http://intranet.contoso.com/sites/Labxx&quot; $SiteTemplate = "STS#0" # check to ensure Microsoft.SharePoint.PowerShell is loaded $snapin = Get-PSSnapin | Where-Object {$_.Name -eq ‘Microsoft.SharePoint.Powershell’} if ($snapin -eq $null) { Write-Host … Continue reading

Posted in SharePoint | Tagged | Leave a comment

Installing and configuring SharePoint 2010

When I started to install SharePoint 2010, everything like a peanut step by step without face any block to complete the installation. It’s awesome! Microsoft have been improve features for setup SharePoint 2010 compare to SharePoint 2007. As it turns … Continue reading

Posted in SharePoint, SharePoint 2010 | Leave a comment