As you can see our library has its own module, service, and component. We can add more components, services, directives, pipes, and modules as per our needs.The Library file that we need to edit is my-lib. It appears in the folder C:\Users\ISHU\Desktop -> ngApp4Library -> ...
Moving on, we need to create a homepage that can be represented by an Angular component. So let’s start by creating another component; type ng g c home in the terminal to auto-generate the home component. As previously, a new folder named “home” will be created containing four differe...
"Cannot create ActiveX Component" "Exception from HRESULT: 0x800A03EC" Unable to open excel file "Failed to compare two elements in the array." "Object reference not set to an instance of an object" error which points to my "htmlparser.Parse(sr)" "Please wait..." while file is uploadi...
We will go back to the component where we defined our accountForm. All the validator methods for reactive forms are defined in the Validators class, which we have to import: import { FormGroup, FormControl, Validators } from "@angular/forms"; Then we will assign the validators to the co...
Angular commit message convention I recommend using a commit message convention. It’s really convenient and can be used in a lot of tools like Jira & GitHub. This requires you to create a commit message in a specific format. This format should have a prefix such as fix or feat (as seen...
Vue vs. Angular.js The old, or the original Angular is still in wide use nowadays. Vue was largely inspired by Angular.JS. That explains the similarities: the parts that Angular.js got right moved to Vue. Vue outperforms Angular.js in almost any way we could think of. It is simpler ...
'Return' statement in a Function,Get,or Operator must return a value...Question "An error occurred during local reporting processing. Object reference not set to an instance of an object." "Define query parameters" popup in Dataset properties -> Refersh field, not displayed for Sps in SSDT...
The src, or source folder contains all the React components, external CSS files, and dynamic assets that are brought into the component files. The icon that is displayed in the left-menu of the Docker Desktop Dashboard. A file that provides information about the extension such as the name,...
Error"textAngular Error: An editor with the name already exists"occurs See Issue#240for specific details on why this occurs and how to resolve it. Developer Notes When checking out, you need a node.js installation, runningnpm installand thenbower installwill get you setup with everything to ...
To add dhtmlxScheduler to the Angular app we should create a new component. For this, run the following command: ng generate component scheduler --skip-tests The newly created “scheduler.component.thml” file inside the “scheduler” folder, will contain thetemplate for the scheduler. Let’s ...