Get Groups for AD User with PowerShell or C#
In apps with different Roles and permissions you may need to get information about AD Groups. Here are some snippets which can help you with this part of the task. Read more»
In apps with different Roles and permissions you may need to get information about AD Groups. Here are some snippets which can help you with this part of the task. Read more»
While the development SPFX for SharePoint 2019 once the loading of the webpart at ‘workbench.aspx’ page stopped. SharePoint server is installed at my virtual machine, the development of SPFX is local. At first I totally could not understand what’s wrong. But soon started to look for the reason. Read more»
If you need to select the records between 2 dates in MS SQL, where the DateTime column contains both Date and Time, you can use SQL functions for WHERE clause and avoid of adding the time information like ’23:59:59.000′. Though you can do it and this way. Read more»
When you make a SharePoint 2019 on-premises solution, you can make not only SPFX solutions, but also old-school WSP-solutions. It allows you not only to use SharePoint API, but also to use your own API services. With SharePoint 2019 you can use WCF service. For example, it’s a good way when you develop an application […] Read more»
If you want to set a background image for an element in CSS, you can do it at least in 2 ways. Which one fits you, it depends on your tasks and the tools you work with. This way of adding a SVG image as a background can be applied for any CSS property, for […] Read more»
If you want to get the Author login from the SharePoint object, for example, list item, you should use ‘expand=Author’ in the query. It’s necessary, but not sufficient. There’s one more option, which you must use. Read more»
Icons make a better view to any application. And for a developer it’s always a problem to find how to use Icons and especially where to find them. If you work with SharePoint Online solutions, this will help you (and also me) to find a place of icons and how to use them. As far […] Read more»
Unlike classic Javascript applications, React works with Virtaual DOM, that’s why it’s not obviously how to add or remove class to the element. I will write about one of the ways how to make it. Read more»
We have an array of strings in React Application. Let’s call it ‘selectedParticipants’. And for the summary page we need to write all the members of array in one line with comma ‘,’ between elements and dot ‘.’ in the end in JSX block. Here is a small snippet. Read more»
Sometimes you need to get the parameters and values from the query string in your JavaScript/TypeScript applications. If you don’t want to spend the time on making your own methods, you can use this one with URLSearchParams. Read more»