How To Send Email With Multiple Image Attachments

This blog helps you to upload, preview, and send bulk attachments of pictures to Office365 Outlook using the Email composition Screen Template. I’ve described the following steps to make it easy to understand and achieve. Step 1 Create a blank Canvas App. Step 2 Add a Screen (Email Composition Screen). Step 3 Go to insert ->Media->Add Picture Control. Step 4 […]

Office 365’s new feature ensures uninterrupted user access, even without internet?

[vc_row][vc_column][vc_column_text] A new feature has been added to office 365 apps by Microsoft, which is set to ensure seamless user activities even if there is no connectivity, i.e. Internet connectivity, plus another option for shared devices. To sign and stay up to date, it generally requires for Microsoft apps in customers’ devices to have connectivity once in a month. Apps […]

Creating List and Columns Using SharePoint Hosted Add-ins

Introduction : In this blog, I have described step by step how to create a list and column using SharePoint-self hosted Add-ins. To create the List and List Columns using SharePoint Hosted Apps, you have to follow the below steps. Step 1- Create a SharePoint Hosted App project.Step 2- Write HTML code under Default.aspx.Step 3- Add JavaScript code under App.js […]

Deploy SPFX-webpart to Office 365 Public CDN

What is Office 365 CDN? The Office 365 CDN (Content Delivery Network) allows you to easily publish your files directly from SharePoint document libraries to servers. Publishing a file to the Office 365-based CDN is as simple as uploading it to a document library. Using a specific URL, the files can be accessed instantly through the CDN. After creating SPFX […]

Configure SPFx Webparts to Azure CDN

In this article, I have mentioned all steps on deploying SPFx webparts to Azure CDN. It requires some manual steps and some command to create the webparts.           SharePoint Framework has provided ootb supports for deploying to Azure Storage account.   Please use Azure Storage account to maintain the web parts. For the Users who follow Microsoft’s SharePoint framework, while building the […]

Create A Microsoft Form In Office 365 Site

Microsoft Forms is nothing but a new O365 app. By using Microsoft Forms, we can create a survey, quiz, and pooling like work easily in O365. Using this we can get the responses of users, members for a different organization in a very simple and easy way. In office 365, we can create and Microsoft Forms and add required input […]

Create Custom List View using JSCOM

This below-mentioned code block will create the custom list view in a specific list. You can also set your custom view fields while creating the list view. [code lang=”c”] var oContext = SP.ClientContext.get_current(); var oWeb = oContext.get_web(); var oList = oWeb.get_lists().getByTitle(“MyList”); //Enter title of your list hostContext.load(oList); hostContext.executeQueryAsync(CreateListView(oContext, oList), function (sender, args) { //On Error console.log(args.get_message()); }); function CreateListView(oContext, oList) […]

Modify User Regional Setting using SharePoint JSCOM

This article will help you to change the user regional setting based on supported ui languages presents on SharePoint online site. [code lang=”c”] <a href=”http://blog.softreeconsulting.com/wp-content/uploads/2017/01/userregionsetting.png”><img class=”aligncenter size-full wp-image-669″ src=”https://blog.softreeconsulting.com/wp-content/uploads/2017/01/userregionsetting.png” alt=”userregionsetting” width=”1018″ height=”348″ /></a> SP.SOD.executeFunc(“sp.js”, “SP.ClientContext”, function () { SP.SOD.registerSod(“sp.userprofiles.js”, SP.Utilities.Utility.getLayoutsPageUrl(“sp.userprofiles.js”)); SP.SOD.executeFunc(“sp.userprofiles.js”, “SP.UserProfiles.PeopleManager”, ManageUserRegionSetting); }); function ManageUserRegionSetting() { var oContext = SP.ClientContext.get_current(); var web = oContext.get_web(); var peopleManager = new SP.UserProfiles.PeopleManager(oContext); userProfileProperties […]