Numeric fields in React – remove start 0 for digits on input
In HTML tag ‘input type = number’ is not very user friendly. So, I always implement it as a text with transformation text to number. Read more»
In HTML tag ‘input type = number’ is not very user friendly. So, I always implement it as a text with transformation text to number. Read more»
I needed to check if the tables are in the database or not. Here is an example of the SQL query – it returns 1 if one of the tables exists and 0 if they do not exist. Read more»
If you want to customize the styles for filter panels in DataGrid from Material UI (MUI), you need to know, where it is. And only so. To update these styles you can only with the object properties. Read more»
You can delete timer job only with PowerShell. Why? I guess you know why 🙂 The most popular reason is the duplicating of timer jobs. To delete a timer job, you need to know the ID. And you can get it also with PowerShell or with GUI. Read more»
In a recent project, I needed to create a SharePoint list and add an index to it, triggered by the addition of a web part to a page. The goal was to fully automate the process using the SharePoint REST API, eliminating the need for any manual intervention by administrators. Here’s how I achieved this. Read more»
When you want to download a publish profile for the service in Azure, there can be an error, that basic authentication is disabled. Read more»
I found a very cool collection of flags in SVG format. It can be used as CDN or added to a project with npm. The library is called ‘flag-icons’. The flags are in 2 formats – 4×4 and 1×1. Read more»
Once again I have to make Export of to Excel. And this time there are requirements to the template – colors, formatting and others. Not so long ago I implemented the export to Excel with XLSX package for React, and it was rendered at client. This solution is good but has many constraints. So, I […] Read more»
The Date is an object in JavaScript and TypeScript. When you have some spare time, try to compare 2 objects, you will find a lot of interesting things 🙂 Obviously, you need to compare not object, but their properties. Read more»
Obviously, it’s a often cased task to update an object, or even a property in one object the array of objects. Especially it’s actual for React applications. Read more»