Showing posts with label Permission Levels in Sharepoint 2013. Show all posts
Showing posts with label Permission Levels in Sharepoint 2013. Show all posts

Tuesday, December 20, 2016

20 Dec

Which is the Front-end technologies for SharePoint Framework development?

Microsoft has clearly mentioned in their key notes, they are building the framework and it is related samples using KnockoutJs and ReactJs with Typescript. Since it is an open-source based development model, choosing the framework/technologies are completely our choices, based on our knowledge and requirements. Here...

Thursday, May 19, 2016

19 May

Set list item level permission in jsom (javascript object model)

ar siteUrl = '/sites/peakfinder'; function breakSecurityInheritanceChangeUser() {         var clientContext = new SP.ClientContext(siteUrl);     var oList = clientContext.get_web().get_lists().getByTitle('Employee');         var itemId = 5;     this.oListItem...

Tuesday, April 26, 2016

26 Apr

Item Adding / Item Added Event Receiver for Document Library

In this below script, Item Adding / Item Added Event Receiver Ways to retrieve data are: Properties.ListItem[«FieldName »] Properties.AfterProperties[«FieldName »] Properties.BeforeProperties[«FieldName »] we must add the synchronization parameter  to our xml definition. <Receiver> <Name>EventReceiver1ItemAdded</Name> <Type>ItemAdded</Type> <Assembly>$SharePoint.Project.AssemblyFullName$</Assembly> <Class>TutoTaxonomy.EventReceiver1.EventReceiver1</Class> <SequenceNumber>10000</SequenceNumber> <Synchronization>Synchronous</Synchronization> </Receiver> In...

Friday, March 18, 2016

18 Mar

Enable Anonymous Access in SharePoint 2013

Go to  Central Administration, Choose Application Management, select Manage web applications . Select the site you want to enable anonymous access on and click on the Authentication Providers icon. On the Authentication Providers pop-up window click on the Default zone. Edit Authentication, Enable anonymous access...

Friday, February 12, 2016

12 Feb

Hide Ribbons to the anonymous users?

Hide Ribbons to the anonymous users in SharePoint based on the PermissionsString ......<SharePoint:SPSecurityTrimmedControl ID="SPSecurityTrimmedControl2" runat="server"        PermissionsString="AddListItems" AuthenticationRestrictions="AuthenticatedUsersOnly"> ...

Friday, January 29, 2016

29 Jan

Copy-SPSite: Rename/Recreate SharePoint site collection in SharePoint 2013

In SharePoint 2013 ,  Copy-SPSite command : Copy-SPSite Source Site URL [-DestinationDatabase Destination DB] -TargetUrl Target Site URL  Remove-SPSiteUrl command: Remove-SPSiteURL -URL Host named Site collection UR...
29 Jan

Display name Change in site collection SharePoint

We need to remove the user from all users list and read it to the list. When I remove and add the data in SharePoint site group, SharePoint site collection user details from all users  /_layouts/people.aspx?MembershipGroupId=0 ...

Sunday, December 27, 2015

27 Dec

How to programmatically get permissions for list using client object model SharePoint 2013

//Get the lists ClientContext clientContext = new ClientContext(_siteurl);clientContext.AuthenticationMode =ClientAuthenticationMode.Default;clientContext.Credentials = new System.Net.NetworkCredential(“peakfinders”, “password@1”, “peakfinders”);Web oweb = clientContext.Web;           ...

Wednesday, December 9, 2015

09 Dec

Programmatically Create SharePoint Toplink bar and Quicklaunch bar in SharePoint 2010 and 2013

Programmatically Create TopLink Bar in SharePoint site collection: SPNavigationNodeCollection topnav = oweb.Navigation.TopNavigationBar; SPNavigationNode node = new SPNavigationNode("Title", "URL"); node = topnav.AddAsLast(node); node.Update(); Similarly, To create Quicklaunch bar SPNavigationNodeCollection topnav...
09 Dec

Programmatically Creating SharePoint Groups with Role

private static void AddGroup(SPWeb web, SPRoleType roleType, string groupName)     {         var groups = web.SiteGroups;         var userGroup = FindSiteGroup(web.Site, groupName);         if (userGroup == null)         {  ...

Tuesday, October 6, 2015

06 Oct

SharePoint Shortcut URL / Important application Pages in SharePoint

People /_layouts/15/people.aspx Permission /_layouts/15/user.aspx Create Group /_layouts/15/newgrp.aspx Permission Levels /_layouts/15/role.aspx Site Content Types _layouts/15/mngctype.aspx Site Columns /_layouts/15/mngfield.aspx Site content and structure  page (Added by @Dnyag): /_layouts/sitemanger.aspx Site...

Wednesday, August 5, 2015

05 Aug

Import and Export subsite in SharePoint 2013 Using PowerShell Script

 Add-PSSnapin Microsoft.SharePoint.PowerShell  Export-SPWeb "http://raghu/sites/test/test1" –Path "C:\rm.cmp" -includeusersecurity  Import-SPWeb "http://raghu/sites/test/test1" -path "C:\rm.cmp" -IncludeUserSecuri...

Monday, May 18, 2015

18 May

Difference between Edit ,Contribute and Read SharePoint 2013 permission levels?

Edit:- Add, edit, and delete lists; view, add, update, and delete list items and documents. - Contribute:- View, add, update, and delete list items and documents. -Read:- Add, edit, and delete items in existing lists and document libraries. By default, this permission level is assigned to the Members group....