European Sharepoint 2013 Hosting Blog
Articles about European Sharepoint Hosting Service
Articles about European Sharepoint Hosting Service
Jan 19th
SharePoint permissions refer to the rights and privileges that users have to access, view, and modify content within a SharePoint site or list. SharePoint permissions can be assigned at several levels,
SharePoint permissions can be assigned to individual users or to SharePoint groups, which are collections of users. SharePoint has two types of groups:
SharePoint permissions can be managed using the SharePoint user interface, or by using PowerShell scripts and the SharePoint Object Model. The permissions available in SharePoint can be divided into several types:
It’s also important to mention that SharePoint also has a feature called “Item-level Permissions” that allows you to set permissions at the item level so that different users can have different levels of access to the same list or library.
Jan 12th
Recently our client provided us company anniversary video and asked us if we could add it to SharePoint Online site and showcase the result. So, I thought about what the options available are. And I am writing this blog to showcase the options available and their advantages and limitations. Let’s see the options first:
Stream (Classic)
YouTube
File Viewer
Embed
Hero – This blog
Highlighted Content
If you want to check any previous options, you can click on that option in the above list and read more about that option.
If you want to add a video to your current site or any external site, then you can use this option. For this blog, we will use video from the SharePoint site.
Upload video to SharePoint Library.
Now add Hero webpart to your page.
Note – make sure you add a hero webpart in a single or 2 third section.
Select webpart and click on edit in the top left section.
In the layout option select “one tile”. It will update the webpart to a single-tile layout.
Now click on the select link button.
Select “site” in the left section. Select the library.
Select the video you want to display. Then click select at the bottom of the panel.
It will load the video on the page. Click edit on the bottom right part of the tile to edit the details.
Provide video title. It will display on video as you type.
Save the page.
The video will render as below.
Advantage
Jan 5th
In this blog, I will discuss SharePoint online Button web part, its properties, limitations, and basic workaround to the limitations.
The Button web part is used to add a custom name and link buttons on the SharePoint site page. When we click on the button it will navigate external or internal URL appended to the button.
The solution is to open the URL in a new tab.
There can be another workaround or solution, if you know any comment down below.
Dec 22nd
In SharePoint Site, Quick launch is very helpful for any SharePoint page developer for accessing the different pages or other resources with just a single click, but the quick launch has drawbacks in utilizing the space of the SharePoint Page, and it doesn’t look good.
So, in this article, I will discuss the steps of how you can hide the quick launch from the SharePoint communication site.
Follow the steps below
Go to the Communication site and here you can see the quick launch links next to your site name.
Click the Gear option and then click on site information.
It will take you to another menu option where you can edit site name option and below you can view all site settings, clicking on it will take you to the site setting page.
Here you can Look and Feel which will list down the options for quick launch and change the look, there is no option to directly enable or disable quick launch, but we can achieve it by adding the below text to your site URL.
/_layouts/15/navoptions.aspx
Once you add navoptions to your site URL it will redirect you to the below page where you can see the checkbox option to enable the quick launch, It is by default checked so just uncheck it and click on the OK button below.
Once you complete all steps go back to the home page of your site you won’t be able to see the quick launch navigation bar.
Conclusion
I hope this article helped you to learn how to show and hide the quick launch navigation bar for your SharePoint Site.
Dec 15th
Linking SharePoint Pages to another SharePoint page can be done using multiple ways, in this article, I will discuss in detail how you can use these tricks.
There are two ways to add links in the text and those are as follows:
Hyperlink
Using Double-Bracket
Option 1: Text Link
In SharePoint Online, you can often need to link another page from somewhere in the text. To do that all you need to do is highlight the text and choose the link button within the Text web part.
Click on the hyperlink it will open a Popup block where you can see another menu that will give you a list of related pages, you can also insert a link to the page or another page you are linking to.
Here you also get checkbox option to open link in a new tab
This is the trick or you can say shortcut to link pages in SharePoint Online.
As you type your text, type in double square brackets “[[“and you will get a list of the available pages to link to. Just choose one of the pages, and you are done – both the text and the link are created at once!
Dec 8th
When upgrading to latest version of SPFx which is 1.15 (as of writing this article), I got the following error.
npm ERR ERESOLVE unable to resolve the dependency tree.
As you know to install the SPFx following steps need to be performed in sequence.
The official node version for SPFX 1.15 is Node.js v16.
To install the SPFx or to set up SPFx developer environment please go through the below articles which have detailed steps.
When installing yeomen there are no issues but vulnerabilities. It is advised to fix the vulnerabilities
As mentioned in the screenshot ran the npm audit fix and the vulnerabilities found are 0.
When Installing the SharePoint generator by running the following command
Npm install @microsoft/generator-sharepoint –global
It gave the following error ‘code ERESOLVE’, ‘ERESOLVE unable to resolve the dependency tree’.
To overcome this issue it is required to add the optional parameter –legacy-peer-deps
As you see the installation is now completed. It also warned about vulnerabilities, which are also fixed by running following npm audit fix command.
To finally know the version of the SharePoint framework or the version of the SPFx that is installed please run the following command.
The parameter flag –legacy-peer-deps introduced in node version v7 as a way to bypass peerDependency auto installation. In other words this flag telling node engine to “Not To Install Any Legacy Dependencies”.
Now let’s try understanding Dependencies vs Peer Dependencies:
Hope you find this article useful. Please let me know for any questions or concerns in comments section.