Lets create OrderBy pipes by running below command using angular cli: $ ng g p OrderBy safe-url.pipe.ts import { Pipe, […]
Updated on Kisan Patel
How to Export and Download Excel files with .NET Core? First, add the EPPlus into your project: dotnet add package […]
Updated on Kisan Patel
<img loading=lazy> is supported by most popular Chromium-powered browsers (Chrome, Edge, Opera) and Firefox. <img src=”logo.png” alt=”logo” loading=”lazy”> Let’s create […]
Updated on Kisan Patel
Here is the simple script to backup SQL Server database: DECLARE @name VARCHAR(50) — database name DECLARE @path VARCHAR(256) — […]
Updated on Kisan Patel
In order to update the angular-cli package installed globally in your system, you need to run: npm uninstall -g @angular-cli […]
Updated on Kisan Patel
How to make a table with resizable columns with RxJS in Angular? First, create resizable directive as follow: ng g […]
Updated on Kisan Patel
Let’s learn how to shrink database in SQL Server Step 1 : Right click on database => properties => options […]
Updated on Kisan Patel
Let’s learn how to scroll specific element on click in Angular? Solution 1: app.component.ts import { Component, Input } from […]
Updated on Kisan Patel
How to build url with #hashtag to routerLink in Angular? For Example: /contact-us#destination Solution 1: <a [routerLink]=”[‘/contact-us’]” fragment=”destination”>Jump to ‘Test’ […]
Updated on Kisan Patel
Lets learn how to solve sanitizing URL problem in Angular using pipes. First create SafeUrl pipes by running below command […]
Updated on Kisan Patel