Must explain to you how all this mistaken idea of denouncing pleasure and praising pain was born and I will give ut you a complete account of the system, and expound the actual teachings of the great explorers of the truth, the seds master-builder of human happiness. No one rejects, dislikes, or avoids pleasure itself, because it is pleasure, but because those who do pleasure rationally encounter consequences
Control allows you create a control where users can upload images
Create Blank Site Template
For one of my requirement, I was trying to create a Blank Site Collection on SharePoint 2013. To do so, I navigate to Central Administration -> Create Site Collections. But I could not see the template called a Blank Site Collection listed on the Create Site Collection Page. Then later identified that the Blank Site Collection template, by default will […]
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 […]
How to Set Permanent Redirect in SharePoint Online for a Clean User Experience?
In case you ever feel the requirement of setting stable redirects in SharePoint Online, you can consider different ways to do that. However, for a clean user experience we have one solution that you might like. Whether you have a marketing site collection or a home site collection, redirects may look incredibly simple, but in some cases it is not. […]
How to Create Metadata?
Many of us have been told that metadata is very essential and should be implemented in our SharePoint environment. Furthermore, we are also instructed how to import managed metadata into SharePoint. You might think that it is that easy to covert nested folders in to metadata magically. However, there is sort of a challenge, which is “how to have the […]
No-Code Solutions to Enhance SharePoint Performance
Right out of the box, SharePoint offers a set of useful tools that can be used to smooth the progress of document sharing and to encourage data visualization. However, poor performance issue is one of the frustrating tribulations that all SharePoint administrators have to face every now and then, which turns the whole experience into a disaster. All you have […]
Secure Your Document Library with These Easy Methods!!
One of the major concerns of several organizations out there is the security and integrity of their documents and files that they have stored in SharePoint. There is no doubt that Microsoft has already considered that fact and has provided features for file encryption. But, errors are what make us what we are as human, so additional care is definitely […]
Migrate Files and Documents to SharePoint- Becomes Easy!
How to migrate documents to SharePoint without any hassle? We are pretty sure that every SharePoint admin has thought of this at one point or another whining thinking of moving their organization to cloud. Our offshore SharePoint developers have inscribed a blog that would explain 4 exceptional ways to move your document and files to SharePoint. In this blog, you […]
Issues in SharePoint when using a trust with Selective Authentication
If you ever have experiences with SharePoint, the concern of “Credential request” is probably not new to you, where you have to face that request 3 times before clicking the 401 Unauthorized. While trying to navigate from web-frontend server, we can see this happen a lot of times. Well… resolving this is like a walk in the park for a […]