Skip to main content

Posts

Getting Started with SharePoint Framework

I have created the following video series to learn more about how to start your development work around the SPFx framework. SharePoint Framework (SPFx): Introduction SharePoint Framework (SPFx): Getting Started      SharePoint Framework (SPFx): WebParts  SharePoint Framework (SPFx) Extensions (Application Customizers) SharePoint Framework (SPFx) Extensions (Form Customizer) SharePoint Framework (SPFx) Extensions (Command Sets) SharePoint Framework (SPFx) Extensions (Form Customizer) SharePoint Framework (SPFx) Extensions (Library Component) SharePoint Framework (SPFx) Extensions (Adaptive Card Extension)     

Chat GTP - Azure Logic App to Review Pull using chat GTP

This Post is an example of how you can automate your Pull request comments.   GitHub Link :  https://github.com/BasantPandey/ChatGTP-Logic-App-Review-Pull-Request#introduction Introduction First, you need to create a Logic App in Azure. You can do this by going to the Azure portal and searching for "Logic App" in the search bar. Then, click "Create" and follow the prompts to set up your Logic App. Once you have your Logic App set up, you need to add a trigger. In this case, we want the Logic App to be triggered when a new pull request is created in ADO. To do this, add the "Azure DevOps - When a pull request is created" trigger to your Logic App. Next, you need to add an action to your Logic App to create a code review. For this, we will use ChatGPT. Add the "HTTP - HTTP" action to your Logic App and configure it to use the ChatGPT API to generate a code review. You will need to provide the necessary inputs to the API, such as the code to be revi...

SharePoint Online tools Improve productivity

SharePoint online increases your productivity by using the following chrome extensions.  SPInsider Here is the link you can directly download from chrome. This tool shows all the list and library structures based on the current user login.  StyleBot it will help you fix some of the UI changes you wanted to fix. This tool renders your custom design at last and keeps track of the sites you used. chrome link   SP Editor This tool has some advanced features.  A Google Chrome Extension for creating and updating files (js, css), injecting files to sites, modifying web/list propertybag values (add, edit, remove, index) and creating webhook subscriptions, edit/add/remove webparts from publishing pages and run sp-pnp-js typescript snippets in SP2013, SP2016, SP2019 and SharePoint Online from Chrome Developer Tools. This tool will help you create amazing SharePoint applications fast from your browser from any computer which runs Chrome! here is the link

(5/7) WebJobs: Configure Azure WebJobs

(4/7) Play by Play Series on Azure WebJobs

(4/7) Play by Play Series on Azure WebJobs

(2/7) Play by Play Series on Azure WebJobs

(2/7) Play by Play Series on Azure WebJobs

(7/7) Office 365: Single Page App Using Angular 6.0

(6/6) Office 365: Single Page App Using Angular 6.0 & PNP Js

(4/4) Office 365: Single Page App Using Angular 6.0

(3/3) Office 365: Single Page App Using Angular 6.0 & PNP Js

(2/2) Office 365: Single Page App Using Angular 6.0 & PNP Js

(1/2) Office 365: Single Page App Using Angular 6.0 & PNP Js

(3/4) Office 365:- PNP Starter Kit (Introduction to provisioning folder)

(4/4) Office 365:- PNP Starter Kit Introduction Deploy to SharePoint tenant

(2/2) Office 365:- PNP Starter Kit Introduction Folder Structure(WebPart...

How to Setup PnP-Starter-Kit

1. Download PnP-Starter-Kit from the GitHub . 2. Navigate to the https://portal.office.com/adminportal/home#/companyprofile   3. Set Release preferences to : Targeted release for everyone.   You may get the following error. If you missed to change the setting. 4. Navigate to https://<tenant> -admin.sharepoint.com/_layouts/15/termstoremanager.aspx term store management page.  5. Add Term store administrator set as "tenant admin" and Save the settings.  6. It will take 24 hours to save your tenant preferences.  7. Go to the sp-stater-kit download location. 8. You will find the list of folders and let me explain you the folder one by one. Assists: store all the image and these images being used inside the provisioning scripts files.  documents : Provide the steps how to add the app in app store and how to manage the 3rd party API using API management page. How to add/create new people property in the user ...

Office 365 and PnP-PowerShell 2013 : Fields

Now the time to learn about the Fields or so called SharePoint “List” and “Content Type” Columns.  The below mentioned cmdlets lets you create and remove the Fields to content type and directly to the SharePoint List.  Cmdlet Description Add‑PnPField Adds a field to a list or as a site column Get‑PnPField Returns a field from a list or site Remove‑PnPField Removes a field from a list or a site Add‑PnPFieldFromXml Adds a field to a list or as a site column based upon a CAML/XML field definition Add‑PnPTaxonomyField Adds a taxonomy field to a list or as a site column. If you want to take a better control over to the list columns better way to design and developed via “ Add‑PnPFieldFromXml ” method. As this method you only need to work on the XML part for this you need to invest your time to check CAML Documentation. So I am going use “ Add‑PnPFieldFromXml ” cmdlets to create the utility to create the columns and configuration done via CSV file. So ...

Office 365 and PnP-PowerShell 2013 : ContentType

In this content type section is most important section. You can use these methods to create, delete and update the existing content type. So the cmdlets are piety straight. The following are the command lets that we are going to use in this section. You can check the github documentation and example as well.  With the help of these cmdlets I will create the Utility same as we did for in before blog post.  Add‑PnPContentType Get‑PnPContentType Remove‑PnPContentType Remove‑PnPContentTypeFromList Get‑PnPContentTypePublishingHubUrl Add‑PnPContentTypeToList Set‑PnPDefaultContentTypeToList Remove‑PnPFieldFromContentType Add‑PnPFieldToContentType        Lets start the end of my goal is the build some kind of meaning utility that you can quickly use in your project and get some benefit.  Same create the multiple content type and attach columns to content type. For configure the content type, I am using t...