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 we are going to discuss the issue coming while using the embed code in SharePoint page.   "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 on the gear icon and then click on  Site Settings . 2. On the  Site Settings  page, you will find the option  " HTML Field Security "  under the  " Site Collection Administration ". 3.  Click on the "HTML Field Security" and choose the option " Allow contributors to insert iframes only from the following domains "    Type the domain from which you want add co

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