Interface GridResult

The grid result.

interface GridResult {
    error?: Error;
    grid: HGrid;
    isLoading: boolean;
    loads: number;
}

Hierarchy (View Summary)

Properties

error?: Error

Truthy if the grid's data didn't load properly and threw an error.

grid: HGrid

The grid result.

isLoading: boolean

True if the grid's data is loading.

loads: number

The number of times a grid has been loaded.