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...
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
Thursday, May 19, 2016
19
May
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
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
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 in SharePoint based on the PermissionsString ......<SharePoint:SPSecurityTrimmedControl ID="SPSecurityTrimmedControl2" runat="server" PermissionsString="AddListItems" AuthenticationRestrictions="AuthenticatedUsersOnly"> ...