Let's SharePoint

Office 365

  1. HOME
  2. Office 365
November 28, 2018 / Last updated : November 28, 2018 Sethu Client Side Object Model

How to look out for empty user groups using Powershell in SharePoint 2010,2013,2016,2019?

Hello SharePointers, Below are the powershell script to look out for empty user groups using Powershell in SharePoint 2010,2013,2016,2019.   if (!(Get-PSSnapin Microsoft.Sharepoint.Powershell -ErrorAction SilentlyContinue)) { Add-PSSnapin microsoft.sharepoint.powershell } $site = “Your sharepoint site name” $UsergroupCount = get-spsite $site | % { $_.allwebs | % { $web = $_ $web.groups | % { [pscustomobject][ordered]@{ “GroupName” = […]

November 22, 2018 / Last updated : November 22, 2018 Sethu Office 365

How to Enable External Sharing in Modern Communication Site in Office 365?

Hello SharePointers, Below are the powershell script to enable External Sharing in Modern Communication Site in Office 365. Connect-SPOService -Url https://laksinnovation-admin.sharepoint.com Set-SPOSite -Identity https://laksinnovation.sharepoint.com/sites/Communicationtestsite -SharingCapability ExternalUserAndGuestSharing Happy SharePointing Folks!

November 17, 2018 / Last updated : November 17, 2018 Sethu Client Object Model

How to hide SharePoint Column in Display/Edit/New form in SharePoint 2010/2013/2016/2019/Office 365?

Hello SharePointers, Below are the script to hide SharePoint Column in Display/Edit/New form in SharePoint 2010/2013/2016/2019/Office 365 script src=”//code.jquery.com/jquery-1.12.4.js” type=”text/javascript”> <script type=”text/javascript”> $(function () { $(“.ms-standardheader:contains(‘yourFieldName’)”).closest(“tr”).hide(); }); </script> Happy SharePointing 🙂

September 13, 2018 / Last updated : September 13, 2018 Sethu Office 365

How to consume Graph API in SharePoint Client framework-spFX in SharePoint online?

Hello SharePointers, You can consume Microsoft graph API in sharepoint framework using AADhttpclient. Here is the source code to achieve the same. private getUserDetailsGraphAPI(): void { const aadClient: AadHttpClient = new AadHttpClient( this.props.context.serviceScope, “https://graph.microsoft.com” ); // Get users with givenName, surname, or displayName aadClient .get( ‘https://graph.microsoft.com/v1.0/users?$select=displayName,mail,userPrincipalName’ AadHttpClient.configurations.v1 ) .then(response => { return response.json(); }) .then(json […]

August 31, 2018 / Last updated : August 31, 2018 Sethu Client Object Model

How to hide fields in SharePoint display form using Javascript in SharePoint 2010/2013/2016 /2019 and office 365?

Hello SharePointers, If you add external column in list, those columns will be visibile in your sharepoint display form by default. To hide sharepoint fields in sharepoint display form, you have to write the below script. <script language=”javascript” src=”https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js”></script><script language=”javascript”> $(document).ready(function () { $(“.ms-standardheader:contains(‘FieldName1’)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName2)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName3’)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName4)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName5)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName6’)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName7’)”).closest(“tr”).hide(); $(“.ms-standardheader:contains(‘FieldName8’)”).closest(“tr”).hide(); }); </script>​​​<br/>​<br/>   Happy […]

July 25, 2018 / Last updated : August 15, 2018 Sethu Client Object Model

How to validate SharePoint list for First and Last name should be unique in Office 365/SharePoint online/2010/2013/2016?

Hello SharePointers, SharePoint online doesn’t allow two columns to be set as unique value for validation. Let us consider the business scenario, where first name and last name has to be unique in a SharePoint list. This can be achieved using REST API calls . Below are the code snippet that will help you to […]

March 23, 2018 / Last updated : March 23, 2018 Sethu Office 365

Why My SharePoint Alerts are not working in some of List/Library Views in Office 365, SharePoint 2010/2013/2016?

Hello SharePointers, In case if you are wondering why alerts emails are not triggered on any changes in the SharePoint List /View, here is a little catch, the alerts will work only on the few column types. Below are the column types that work on alerts on views with filters: Single line Multiple line Choice […]

February 28, 2018 / Last updated : February 28, 2018 Sethu Office 365

How to Set Item Level Permission in SharePoint 2010/2013/2016 & Online?

Hello SharePointers, In case if you want to create set level permission for a SharePoint list in way that only contributors of the group can create list item and can see only their records. Its pretty simple. Please do the below settings as below in List settings.   Then create a SharePoint group with contribute […]

February 15, 2018 / Last updated : February 15, 2018 Sethu Office 365

How to get current logged in user on a Sharepoint list using Sharepoint Framework?

Hello SharePointers, SharePoint frameworks is most talked about the topic nowadays. In this blog,we will get the current logged in user on a SharePoint List using SPX framework. import Web from ‘sp-pnp-js’; let web = new Web(this.context.pageContext.site.absoluteUrl); let curruser = web.currentUser.get().then(function(res){ console.log(res.Title); }) Happy SharePointing Folks 🙂

February 13, 2018 / Last updated : February 13, 2018 Sethu JSOM

How to associate the global resusable workflows to SharePoint list/libraries using JSOM?

Hello SharePointers, Here are the JSOM script to associate global reusable workflow to a SharePoint list/libraries. <script type=”text/javascript”> function AddWorkflow() { var ctx = SP.ClientContext.get_current(); var site = ctx.get_web(); var templates = ctx.get_web().get_workflowTemplates(); var template = templates.getByName(“My worklows”); ctx.load(templates); ctx.load(template); ctx.executeQueryAsync(Function.createDelegate(this, function (sender, args) { var info = new SP.Workflow.WorkflowAssociationCreationInformation(); var taskList = ctx.get_web().get_lists().getByTitle(“Workflow Tasks”); […]

Posts navigation

  • «
  • Page 1
  • Page 2
  • Page 3
  • …
  • Page 12
  • »

Recent posts

How to insert table in Modern Pages using PnP Powershell in Office 365/Sharepoint Online?

June 7, 2019

How to set up Access Requests in SharePoint online using Powershell?

May 11, 2019

How to change the default SharePoint suite logo in SharePoint 2013/2016/2019?

April 30, 2019

How to add metadata to Document libraries in SharePoint online using powershell.

April 27, 2019

How to get Sharepoint site details using Powershell in Office 365?

April 17, 2019

How to get alerts for a specific policy in Cloud app security using Powershell

April 16, 2019

How to get the list of custom apps in App catalog using Powershell?

April 9, 2019

How to get the list of policies in Microsoft Cloud app security using window powershell?

April 4, 2019

How to get the list of List and Document library item counts in SharePoint online using Pnp Powershell ?

April 4, 2019

How to restore subsite in a Sharepoint online site collection using Pnp Powershell

April 2, 2019

Category

  • Anonymous access
  • Client Object Model
  • Client Side Object Model
  • Customization
    • Customization
  • Designer Workflows
  • Errors & Resolutions
  • Features
  • Google Analytics
  • InfoPath
  • Item Scheduling
  • JSOM
  • Nintex worflows
  • Office 365
  • Office 365 Groups
  • PnP JS Library
  • PowerShell
  • Powershell Online
  • REST API
  • REST API's
  • Server Side Object Model
  • SharePoint 2010
  • SharePoint 2010 Search
  • SharePoint 2013
  • SharePoint 2013 Search
  • SharePoint 2013 Workflows
  • SharePoint 2016
  • SharePoint 2019
  • SharePoint Designer
  • SharePoint Framework
  • SharePoint Online
  • SharePoint Pnp
  • SharePoint Usage Analytics
  • Unique values
  • User Profile Services
  • Windows Powershell
  • Workflow Manager

Archive

  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019
  • December 2018
  • November 2018
  • October 2018
  • September 2018
  • August 2018
  • July 2018
  • May 2018
  • April 2018
  • March 2018
  • February 2018
  • January 2018
  • December 2017
  • November 2017
  • October 2017
  • June 2017
  • May 2017
  • April 2017
  • March 2017
  • February 2017
  • January 2017
  • November 2016
  • October 2016
  • September 2016
  • August 2016
  • July 2016
  • June 2016
  • January 2016
  • November 2015
  • October 2015
  • September 2015
  • August 2015
  • July 2015
  • May 2015
  • April 2015
  • March 2015

Copyright © Let's SharePoint All Rights Reserved.

Powered by WordPress & Lightning Theme by Vektor,Inc. technology.