SCEditor Remove iFrame Tag
If you are using SCEditor as a rich text editor in your Angular/React application and you are trying are seeing that the iFrame tag is removed from the editor then I have a solution for your problem.
If you are using SCEditor as a rich text editor in your Angular/React application and you are trying are seeing that the iFrame tag is removed from the editor then I have a solution for your problem.
In this blog post, we have discussed some JavaScript and Angular concepts.
In this blog post, we have listed some of the techniques which can be used to optimize the speed, loading time and performance of an angular application.
If your angular application is not working in IE11, then the following simple steps can be used to make it work.
Normally, we use Angular Material’s data tables with pagination (mat-paginator) to list the results. This is not an efficient and optimal approach particularly if there are lots of records to show in the table. Angular Material’s pagination just divides the…
In this post, we will learn about components and how to create new components in an Angular 9 application using Angular CLI. We will create the required components for our application and will show how components can be used to organize the content of the application.
This is the second part of the series "Learn Angular 9 From Scratch". In this post, we will learn how to create a new Angular application using Angular Command Line Interfacer i.e. Angular CLI.
In this post, we will learn: 1. What is Angular? 2. What are Single Page Applications (SPA's)? 3. What are the prerequisites to create an angular application? 4. What is NodeJS and Node Package Manager (npm)? 5. What is Angular CLI?
In a recent project, I was working on a user profile component that can be used by the user to edit their profile information. A part of that component was a profile image section which lets the user change their profile picture. The profile picture is sent to the Node API via HTTP Post request, stored in a folder and then name/URL of the image is stored in the database. In this post, I will share the code on how to implement this functionality.
In this tutorial, we will discuss the steps to host angular app (front-end) and NodeJS App (back-end API) on same domain. The idea is that we will have a folder named as 'public' in the root folder of the app which will have all files associated to the angular app.
Learn one way to build applications with Angular and reuse your code and abilities to build apps for any deployment target. For web, mobile web, native mobile, and native desktop. Important Commands: npm install -g @angular/cli ng new hello-world…
This post describes the steps to integrate Quill Editor in an angular project. Run the following commands in your angular project directory: Inside app.module.ts or any shared module import the QuillModule Add the following in imports array: Add following in…
This blog post describes step by step process to add like/love reactions in angular project. Step 1: Create a component by using the command ng g c e.g ng g c postReactions Step 2: I have added a button in…
Let’s say that we have data in array e.g tasks = [‘task 5’, ‘task 4’, ‘task 3’, ‘task 2’, ‘task 1’]. Now when we will use ngFor then it will display the data like this: But we want to reverse…