Example of Async Pipe in Angular Grid Component

This sample demonstrates the usage of angular grid with Observables using the async pipe. Paging, sorting and grouping can be performed in this sample.

Drag a column header here to group its column
0 of 0 pages (0 item)
Description

Grid can be bound with Observable or Promise object. The Observable or Promise object should be piped into grid using the async pipe.

When performing grid actions such as paging, sorting and grouping etc. the " dataStateChange " event will be triggered and we need to resolve the Observable based on the new grid data state. With AsyncPipe we use observables directly to the data, without having to store the result on an intermediate property or variable.

In this demo, simply select the paging and click the column header to sort a column, multiple sorting is also enabled. To group a specify column, drag and drop the column in the group drop area. To enable paging, sorting and grouping, set the allowPaging , allowSorting and allowGrouping as true.

Injecting Module:

Grid component features are segregated into individual feature-wise modules. To use the paging ,sorting and grouping features, inject the PageService, SortService and GroupService respectively into the @NgModule.providers section.