Skip to main content

Posts

Showing posts from February, 2021

Everything you want to know about sharepoint groups

SharePoint group is collection of users. SharePoint group is useful when you want to assign a common permission to multiple users at once instead of assigning permission to one user  at a time. How to create a group in SharePoint?  To create a group in SharePoint, follow the steps mentioned below: 1 Navigate to your site and click on gear icon. 2 Click on the Site information and one section will appear. 3 From site information section, click on the “View all site settings” 4. You will be redirect to the Site settings page. Now move to the click on “ People and groups ” under the “Users and Permissions” section. 5 You will be redirect to the People and Groups page. Click on the “Groups” option available on top of the left panel and you will be redirect to the groups page. 6  Now click on the “New” option.   7. Now you are at Create group page. Type the name in textbox next to the “Name” field and choose the appropriate permission as per your requirement. Here I

Issue while embedding content using iframe in SharePoint

In this blog post, we'll explore the necessary settings required prior to embedding code within a SharePoint page. Failing to configure these settings correctly may result in issues when utilizing the embed code.  The HTML field security setting is useful to allow or restrict the ability to embed content on SharePoint pages if you use external images in JSON formatting.  Common issue like: External Icon/Image URLs not working in JSON Formatting. Embedding content from this website isn't allowed. "Embedding content from this website isn't allowed, but your admin can change this setting. They will need to add 'www.techrobbers.com' to the list of sites that are allowed." This issue came when you try to add embed code from the site which is not added into the "Allow iframes from this domain". To embed the content from the site you need to add the site in the  HTML Field Security . To resolve this issue, follow steps mentioned below: 1. Click

How to join microsoft teams meeting

In this article, you will going to get all the answers of your questions which are related to joining the Microsoft teams meeting.  Some common questions are: How to join the teams meeting from web?? How to join the teams meeting using browser?? Join microsoft teams meeting as guest?? Join microsoft teams meeting without account?? Anyone can join a meeting using Microsoft teams without a Teams account. follow steps mentioned below to join meeting without MS Teams account. Click on the meeting link form the meeting invitation.  Once you click on the meeting link it will open a web page. alert will be generated, click on                 " Cancel ". After cancelling the alert, Select the " Continue on this browser ".                 You will redirected to teams meeting, do the setting of mic/camera and click on " Join now ". Now you will bring to the lobby and some one from the teams will add you in the meeting. Note: To use MS teams from web recommended

Useful commands for SPFx development

In this blog, we are going to learn all the commands which are very useful in developing SharePoint Framework client side solutions. These commands are useful in both web parts and extensions development using SPFx Framework. You can install node modules and use them in SharePoint Framework and either you can use things from CDN also. Clean and build the SharePoint Framework (SPFx) client side solution. gulp clean gulp build Create app package of SharePoint Framework (SPFx) client side solution. gulp bundle --ship gulp package-solution --ship Install Jquery in  SharePoint Framework (SPFx) client side solution. npm install jquery --save npm install @types/jquery --save-dev Install bootstrap in  SharePoint Framework (SPFx) client side solution. npm install bootstrap --save npm install @types/bootstrap  --save-dev Install bootstrap with a specific version in  SharePoint Framework (SPFx) client side solution. npm install bootstrap@4 --save npm install @types/bootstrap@4 --save-dev Use the