Interface GridRefreshResult

A grid result that can be refreshed.

interface GridRefreshResult {
    error?: Error;
    grid: HGrid;
    isLoading: boolean;
    loads: number;
    refresh: () => void;
}

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.

refresh: () => void

Called to refresh any backing data queries.