Home > SharePoint Add-in

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

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 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

Using CAML query show SharePoint list items for the previous and next week

In this post, I will show you how to filter the SharePoint list items for the previous week and next week from TaskDate, created by the current user. SharePoint list has the option to filter list from OOB under list view section, In this article, I will show you how can

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

Publish SharePoint Hosted Add-ins

Hello everyone, in this post we will discuss about way to publish SharePoint Hosted Add-ins. SharePoint Add-ins overview There are two basic kinds of SharePoint Add-ins — SharePoint-hosted and provider-hosted. When you've finished developing, deploying and testing SharePoint Add-in the final step is making that add-in available to your users or clients.

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

Resize Add-In Parts dynamically in SharePoint Add-Ins

Hello everyone, in this post we will discuss about how to resize Add-in App Part. If you are reading this post first time, I would recommend read following articles SharePoint Hosted Add-In as an App Part SharePoint Hosted custom App Part properties Above my listed article give complete information about App Part/Add In

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

How to add and read SharePoint Hosted custom App Part properties

Hello everyone, in this post we will discuss about custom Add-in Part properties with how to add and read custom Add-in Part properties. If you are reading this post first, I would recommend to read SharePoint Hosted Add-ins as an App-Part first, that mentions what is an app part and how to create and

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

What is Manifest file in SharePoint Add-In?

In the second post of this series I introduced What is the Host Web URL and App Web URL in SharePoint add-in. In this article we will discuss another important and required file, which called AppMainfest.xml. It is an XML file. Every SharePoint Add-In include AppMainfest file on his package. The Mainfest file

This Article is TAGGED in , , , . Read more

How to add SharePoint Hosted Add-In as an App Part

Hello everyone, in this post we will discuss about Add-in App Part, what is an app part and how to create and show SharePoint Hosted Add-ins as an App-Part. What is an App Part App Part is basically Client Web Part to present an add-in content to an end user. An App

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