Home > Chintan Upadhayay

How to send an email through Visual Studio workflow in SharePoint Hosted App

Hello, In this article, I will show you how to send an email through Visual Studio workflow in SharePoint Hosted App, I am using VS17, We have seen we can send email using SharePoint Designer, Microsoft Flow, and RET API. Send an email through Microsoft.SharePoint.DesignTime.Activities.Email activity is quite old but I

This Article is TAGGED in , , , , , , , . Read more

Getting the current context in SPFx service and get the SharePoint List items

Hello, In this article, I will show you how to get the current context of the site and pass it to services. In the traditional method, we were getting the Current Context of the site from SP.ClientContext or using Rest API. I have created a React-based SPFx Web part. I have different

This Article is TAGGED in , , , . Read more

Sort the PowerApps Data/Collection by Specific Column On Click

In PowerApps, we can use the SortByColumn functions to sort the Items/Table by specific column. We will run how to sort the table by specific column On button click. I have a sample Product SampleData excel sheet with below columns, which is hosted on OneDrive business. I have already created a basic PowerApp

This Article is TAGGED in , , , . Read more

How To Update And Delete Items in Bulks Using PnP In SPFx

in this blog, we cover the PnP Bulk Update and Delete Items. Brief information about SP-PnP-JS PnPJS is an open-source solution with active community providing support for it. There is no SLA for the open-source tool support from Microsoft. SP PnP JS are patterns and practices that the core JavaScript library offers. They

This Article is TAGGED in , , , , , , , . Read more

How to get Current Site URL in Visual Studio SharePoint workflow

Using "LookupWorkflowContextProperty", we can retrieve Current Site URL. LookupWorkflowContextProperty retrieves a property from the workflow instance. LookupWorkflowContextProperty which return following properties. Associator: SharePoint app pool account when you first created the web application. [SHAREPOINT\system] Initiator: Get the name of the workflow Initiator, It will return user name who initiate the workflow Association Name: "UserInfoWorkflow -

This Article is TAGGED in , , , , , , . Read more

How to Find and Change the deployment URL of a solution in a SharePoint Hosted App?

Recently I had faced trouble to find my SharePoint Hosted Add-in deployment URL because I want to deploy my Hosted App in another office 365 site. After some research, I have found the solution and want to share with all. How to find the Deployment URL? Select the project file in Solution Explorer

This Article is TAGGED in , , , , , . Read more

How to send an email using REST API in SharePoint?

In SharePoint Online we have used the Workflow to send an email notification to the user/group, but in some cases, we don't want to create a workflow just for email. For more info about the email trigger using workflow click HERE. In this article, I will share how can we send emails

This Article is TAGGED in , , , , , , . Read more

Common jQuery Ajax methods and options

In the previous article, we learned about event.preventDefault() vs event.stopPropagation() vs return false. In this article, we will cover the most basic methods/function used in jQuery when dealing with Ajax. Ajax ( Asynchronous JavaScript and XML ) it allows web pages to change/update data asynchronously with a web server without reloading the

This Article is TAGGED in , , , . Read more

17 Useful jQuery Tricks and Best Practices

In the previous article, we learned about Common jQuery Ajax methods and options. In this article, we will cover the some general Do's and Dont's or Best Practices in jQuery, which is helpful to increase your page speed and will optimize code. jQuery is the most popular client-side library. It has

This Article is TAGGED in , , , , , , . Read more

How to add additional Lookup fields via Schema.xml in SharePoint Add-in

Hello folks, Recently I was working on SharePoint Add-in app with two different lists. First is "Requests" and Second is "TimeSheetCategory". "Requests" list fetching a lookup column "TaskCategory" from "TimeSheetCategory" list, but requirement changes and need another column "ORTCalculationPercentage" from "TimeSheetCategory" in "Requests" list. In SharePoint OOB you can add additional column

This Article is TAGGED in , , , , , . Read more