Angular 6 Grid New Features
The next release of our Angular Components is just around the corner. One of the major new features is that users would be able to bind the Grid by using Angular native directives such as ngFor.
For example, the output of this code:
<jqxGrid #grid> <tr> <th>Id</th> <th>Name</th> </tr> <tr *ngFor="let hero of heroes"> <td> {{hero.id}}</td> <td> {{hero.name}}</td> </tr> </jqxGrid>
would be:
The same kind of feature will be included in our ListBox, ComboBox, Dropdownlist, DataTable and TreeGrid components. The difference for the ListBox, ComboBox and DropDownList is that the binding there would be by LI tag instead of TR tag.