Let's SharePoint

October 2015

  1. HOME
  2. Monthly Archives: October 2015
October 30, 2015 / Last updated : October 30, 2015 Sethu InfoPath

How to Redirect to Thank You Page after Infopath Submission in SharePoint 2013?

Hi SharePointers, In SharePoint 2013, Infopath forms can be submitted to a SharePoint Form Library. Info path are fully driven by rules and actions. This a common requirement where you need to redirect to Thank you on successful submission of a Infopath form to a SharePoint library. I would give out the list of the […]

October 30, 2015 / Last updated : November 14, 2015 Sethu Client Object Model

How to Create a Content Type in SharePoint 2013/Office 365 programmatically using CSOM?

In Office 365 environment, you have to provision everything through CSOM. Content type is basic building blocks of any SharePoint List and Libraries.  Here is the CSOM Code snippet to create a new Content type and Its ID. ContentTypeCollection contentTypes = web.ContentTypes; cc.Load(contentTypes); cc.ExecuteQuery(); foreach (var item in contentTypes) { if (item.StringId == “0x0101009189AB5D3D2647B580F011XA2F359FB3”) return; […]

October 29, 2015 / Last updated : October 29, 2015 Sethu Client Side Object Model

How to Create SharePoint Calendar View Programmatically in SharePoint 2013/2010 using CSOM?

Hello SharePointers, A SharePoint calendar is  simply a type of list — a collection of information that you can share with anyone who has access to the site. This sharepoint list contains calendar entries, its items have specific dates and times associated with them. In this article, we will see how to create a Calendar View Programmatically using […]

October 28, 2015 / Last updated : November 15, 2015 Sethu Server Side Object Model

How to Show Images from Image Library in a DataList in SharePoint 2013 Programatically?

In SharePoint 2013, if you want to show the images from a image library and with its corresponding description , we can bind it using Data List Control in ASP.NET. Here are the sample code to achieve the same. UserControl aspx Code :- <asp:DataList ID=”dtImagePreview” runat=”server” CellPadding=”5″ OnItemCommand=”dtImagePreview_ItemCommand” > <ItemTemplate> <asp:ImageButton ID=”hypImagePreview” class=”preview” height=”80″ width=”100″ […]

October 24, 2015 / Last updated : October 24, 2015 Sethu InfoPath

How to get Manager’s Manager Name in SharePoint 2010 using Infopath?

Hi Friends, A lot of you might have heard it about userprofileservice.asmx which is used to fetch user profile details of the given user. The web url for the UserProfile.asmx is http://yoursite/_vti_bin/userprofileservice.asmx. By default, if you don’t set account id property , it give you the details of current logged in user. Basically User profile […]

October 23, 2015 / Last updated : October 23, 2015 Sethu Client Side Object Model

How to Change Author and Editor Field in Office 365/SharePoint online using CSOM ?

In this blog, I will talk about the changing the author and editor field in a SharePoint list or a library in office 365 environment using Client Side object model code. Here is the sample code given to achieve the functionality. static void Main(string[] args) { var siteURL = “https://mytenant.sharepoint.com/custom”; var createdBy = “Sethu; var […]

October 20, 2015 / Last updated : November 17, 2015 Sethu Client Side Object Model

How to Set Theme to a site in SharePoint Online Or Office 365 programmatically using CSOM?

Hi All, In this article, we will learn about setting Theme to a SharePoint site in Office 365 using CSOM. Below is the sample CSOM code to achieve the same. ClientContext clientContext= new ClientContext(siteUrl); clientContext.AuthenticationMode = ClientAuthenticationMode.Default; clientContext.Credentials = new SharePointOnlineCredentials(userName, pwd); new ThemeManager().DeployContosoThemeToWeb(clientContext, clientContext.Web, “MyTheme”, Path.Combine(AppDomain.CurrentDomain.BaseDirectory, “Files/Custom/mytheme.spcolor”), string.Empty, Path.Combine(AppDomain.CurrentDomain.BaseDirectory, “Files/Custom/mypic.jpg”), “seattle.master”); new ThemeManager().SetThemeBasedOnName(clientContext, clientContext.Web, “MyTheme”); Console.WriteLine(“Theme […]

October 16, 2015 / Last updated : October 16, 2015 Sethu Features

How to Share you SharePoint Site to External User in SharePoint Online /Office 365?

In SharePoint online – Office 365, you can share your site to external users who doesn’t have access to your network. The external user must have hotmail email or Microsoft Live email id. Here are the list of steps to share your team site to external users.  From the Administration Center Menu, click Manage Site […]

October 13, 2015 / Last updated : October 13, 2015 Sethu Features

What is Document Management in SharePoint 2013?

In any big organisation, document management has become a norm and must too. Its gives you an overall idea on how to organize your documents in a SharePoint site. The following are the key features which are the must to have when you go for document management in SharePoint 2013 sites. Governance Policy: Groups Members […]

October 8, 2015 / Last updated : November 7, 2015 Sethu Features

How to Use Waiting Dialogue in SP Modal Dialogue box in SharePoint 2013?

In SharePoint 2013, while making JQuery calls , if you want to show dialogue box with waiting option here is the source code to achieve the same. (document).ready(function(){ window.parent.eval(“window.waitDialog = SP.UI.ModalDialog.showWaitScreenWithNoClose(‘Processing’,” Please wait until it is processed ”, 95, 440);”); }); $( window ).load(function() { if (window.parent.waitDialog != null) { window.parent.waitDialog.close(); } }); Happy SharePointing […]

Posts navigation

  • Page 1
  • Page 2
  • »

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.