On SharePoint 2013 you can not add the Web Parts to the master page the same way of 2010. Please use the Design Manager -> Snippet Gallery. In short: You must wrap the Register tag with: <!--SPM: register tag --> Like this: <!--SPM:<%@Regis…
SharePoint Calculated Columns are powerful tools when creating out-of-the-box solutions. With these columns, we can manipulate other columns in the list item. Below are a few basic functions complete with details on how to utilize them. There are som…
Dungeon Master Time Limit: 1000MS Memory Limit: 65536K Total Submissions: 20995 Accepted: 8150 Description You are trapped in a 3D dungeon and need to find the quickest way out! The dungeon is composed of unit cubes which may or may not be filled wit…
The Newsfeed is a key piece in SP2013's approach to social computing. It appears on the landing page of My Site as below: This is actually a web part titled Newsfeed, and can be found under the Social Collaboration category. Now, you may want to have…
'm currently developing a SharePoint 2013 application. After a few deployments via Visual Studio, I was suddenly confronted with the error "Error occurred in deployment step 'Install App for SharePoint': The provided App differs from another App with…
To Check current users permissions using Ecmascript\Javascript client object model SharePoint 2010. function checkifUserHasEditPermissions() { context = new SP.ClientContext.get_current(); web = context.get_web(); this._currentUser = web.get_currentU…
Does the following error message looks familiar to you? (When you go to Site Actions –> Site Settings –> [Site Administration] –> Term store management)  "The managed Metadata Service or Connection is currently not available. The Application…
I hope most of the users and developers might have come across above note and worried about it. There can be any of following reasons for the cause of above note: A workflow being executed on a large number of items. Multiple workflows instances are…
S using System; using Microsoft.SharePoint; namespace Test { class ConsoleApp { static void Main(string[] args) { using (SPSite site = new SPSite("http://localhost")) { using (SPWeb web = site.OpenWeb()) { SPListCollection lists = web.GetListsOf…
Cable master                                                                            Time Limit: 2000/1000 MS (Java/Others)    Memory Limit: 65536/32768 K (Java/Others)                                                                              …