Author
Dhananjay Kumar
Published posts 66Ignite UI for Angular Grid is the fastest data grid available. It not only helps to run applications faster but also allows you as a developer to write applications faster.
How you present data to the user is essential. Often you cannot present data as it is from the data source to the viewer.
In Angular, it is essential to know how components communicate with each other. If you use a component inside another component, they create a parent child relationship. In such a scenario, parent and child components communicate to each other in following ways: You can learn in detail about @Input here and @Output here. In this […]
Have you ever thought, what is type of undeclared variable in JavaScript? I know, the first thing that might come to mind is: how can an undeclared variable have a type? Yes, in JavaScript it is possible.
So you want to write your first Angular application, however setting up even a ‘Hello World’ Angular application is not easy.
In this blog post, let us learn that how Column Hiding can be enabled in IgniteUI for Angular Grid.
Learn to seal, freeze, and prevent extensions of objects in JavaScript with Ignite UI for JavaScript by Infragistics
Learn about content projection in an Angular element with slot in Angular 7.
Handling Angular data binding may be time consuming and sometimes even too complex. This blog post will show you how to simplify the process effectively.
In Angular, you can pass data from parent component to child component using @Input() decorator, and a child component can emit an event to a parent comment using @Output() decorator.