-
Archives
- July 2022
- November 2021
- October 2021
- July 2021
- February 2021
- February 2020
- January 2020
- November 2019
- October 2019
- June 2019
- September 2018
- August 2018
- July 2018
- June 2018
- April 2018
- March 2018
- January 2018
- December 2017
- September 2017
- August 2017
- July 2017
- June 2017
- April 2017
- February 2017
- January 2017
- December 2016
- August 2016
- July 2016
- April 2016
- March 2016
- February 2016
- December 2015
- November 2015
- October 2015
- September 2015
- August 2015
- July 2015
- June 2015
- May 2015
- January 2015
- December 2014
- November 2014
- October 2014
- September 2014
- August 2014
- July 2014
- June 2014
- May 2014
- April 2014
- January 2014
- December 2013
- November 2013
- July 2013
- June 2013
- May 2013
- April 2013
- March 2013
- February 2013
- January 2013
- November 2012
- October 2012
- September 2012
- August 2012
- July 2012
- May 2012
- April 2012
- February 2012
- January 2012
- December 2011
- November 2011
- October 2011
- September 2011
- August 2011
- July 2011
- June 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2011
- December 2010
- November 2010
- October 2010
- September 2010
- August 2010
- July 2010
- June 2010
- May 2010
- February 2010
- January 2010
-
Meta
Category Archives: SharePoint 2010
HTTP 403 Forbidden when calling Excel Services REST API (ExcelRest.aspx)
Today I was looking into Excel Services REST API (ExcelRest.aspx) in SharePoint 2010 for the first time. I followed some good articles on the web but kept on getting HTTP 403 Forbidden errors when invoking ExcelRest.aspx through the browser. Surprisingly … Continue reading
Posted in Excel Services, SharePoint 2010
Leave a comment
Custom Ribbon buttons to bulk publish, approve/reject, cancel approval and unpublish multiple items
———— UPDATE (2015-07-10): If you just want the WSPs, then they can be downloaded here for 2013. UPDATE (2013-06-06): A SharePoint 2013 version of this solution is now available! Download it here. The 2010 version is still available for download. UPDATE: There … Continue reading
Posted in Custom Actions, Ribbon, SharePoint 2010
31 Comments
SPListItem.Workflows also returns completed workflows
I needed to retrieve all the running workflows for a list item. I tried SPListItem.Workflows and according to MSDN this should give me what I need. It however doesn’t – I found that it also includes completed workflow instances. I … Continue reading
Posted in SharePoint 2010, Workflow
Leave a comment
How to close SharePoint modal wait screen after postBack when page is in dialog mode
————– UPDATE: The code originally posted doesn’t work with IE. You get a “Can’t execute code from a freed script” error and the wait screen is not removed after postBack. The code works fine in Chrome and Firefox. I now … Continue reading
Posted in ModalDialog, SharePoint 2010, SharePoint JavaScript API
Tagged SharePoint JavaSc
10 Comments
How to detect user is locked out when using Form Based Authentication in SharePoint 2010
When using FBA in SharePoint 2010 you get the error message below on login when the user name and/or password is incorrect. You get the same error message when the user account is locked out, which is not very useful … Continue reading
Lessons learnt in implementing ASP.NET login controls in SharePoint 2010
Recently I had to implement Create User, Change Password, Password Reset (Recovery) in SharePoint 2010. I decided to use the OOTB ASP.NET login controls for this. Mostly these controls just worked in SharePoint 2010 as they do in ASP.NET. There … Continue reading
“Your query is malformed. Please rephrase your query.” when searching using “None of these words” query
You get the error message “Your query is malformed. Please rephrase your query.” when searching in SharePoint using the “None of these words” query. Spent hours trying to figure it out? I know I did.. This is actually an OOTB … Continue reading
Posted in Search, SharePoint, SharePoint 2010
Leave a comment
How to add custom user profile properties to the People Search Options dropdown
If you are using the OOTB FAST Search Center site template then by default you get a tab for People search on the main page. On this tab you get a Search Options link, which brings up the dropdown box … Continue reading
Posted in Search, SharePoint 2010
6 Comments
Tips for organising your SharePoint project in Visual Studio
Becky Bertram recently blogged about Visual Studio project organisation for SharePoint. I agree with most of her points, and below are 3 additional conventions I’d suggest to others: 1. Always group SharePoint project items (SPI) into folders by project item … Continue reading
Posted in Practices, SharePoint, SharePoint 2010
Leave a comment
SPException “The collection cannot be modified.” when calling SPContentType.Update()
If you are getting the SPException “The collection cannot be modified.” when calling SPContentType.Update() then ensure that the content type you are updating was not retrieved from the SPWeb.AvailableContentTypes collection. Content types retrieved from this collection (as oppose to SPWeb.ContentTypes) are … Continue reading
Posted in Content Types, SharePoint, SharePoint 2010
7 Comments