Friday, February 18, 2022
How can we create hidden list in SharePoint Online via SPFx using PnP JS
Tuesday, January 25, 2022
Microsoft 365 Essential Training for Damsila Exports
Delivered 30 Hours on "Microsoft 365 Essential Training" for Damsila Exports over the couple of days. Damsila Exports are the exporters of Phlogopite Mica from Sri Lanka with over 40 years of experience.
Thursday, December 16, 2021
SharePoint On-premise (Tech Lead+) Interview Questions and Answers - 01
- Default
- Intranet
- Extranet
- Internet
- Custom
What are the databases which are created when we install a SharePoint farm?
The Configuration, Central Administration Content, and Content databases are the three databases that are automatically installed when you deploy SharePoint Server.
Provide couple of Backup and restore best practices in SharePoint Server.
- Minimize latency between SQL Server and the backup location
- Avoid processing conflicts
- Keep databases small for faster recovery times
- Use incremental backups for large databases
- Follow SQL Server backup and restore optimization recommendations
- Configure SharePoint settings to improve backup or restore performance
- Consider site collection size when you determine the tools to use
- No
Tuesday, December 7, 2021
SPFx Interview Questions and Answers - 01
What are isolated webparts?
- Isolated webparts are used when there is a need to access api secured with azure ad securely. Isolated webparts are like normal webparts but they are displayed using and iframe pointing at a unique domain of an Azure AD application. Thus other components cannot access any context token or data of webpart.
- Reference: https://tutorialsinhand.com/tutorials/sharepoint-framework-spfx-tutorial/sharepoint-framework-webparts/isolated-web-parts-in-sharepoint-framework.aspx
- Can do that by adding isDomainIsolated:true in package-solution.json file.
- Reference: http://www.suhail.cloud/2021/10/spfx-routing-is-not-reflecting-in.html
Tuesday, November 2, 2021
the debug executable "" specified in the "" debug profile does not exist Error in VB.Net
Issue
I got the "the debug executable "" specified in the "" debug profile does not exist Error in VB.Net" error when I teach VB.Net to some of the students.
Solution
The Startup object which usually a form is missing from the project properties. So as the solution we will have to set the start up object.
Sunday, October 31, 2021
Add SPFx webpart to full-width column
By default, SPFx web parts cannot added in full-width column page layouts. To do it, in the web part manifest (the *.manifest.json file next to the web part *.ts file) set the supportsFullBleed property to true.
Tuesday, October 12, 2021
SPFx Routing is not reflecting in browser
Problem
I was trying to implement routing in my SharePoint Framework webpart. The webpart working fine but only the issue is the Hash url is not reflected in the browser.
This is because if the isDomainIsolated is set to true. When it is set to true the webpart is embedded into a iFrame.
Solution