Externals

Classes

ColumnGroup
DataSource
GridView
JSDataDataSource
MemoryDataSource
ODataDataSource
TableView

Events


didRedraw

The GridView did redraw the DOM. This event may trigger frequently when virtualization is enabled.


didRedrawBody


didRedrawFooter


didRedrawHeader


didReload

The GridView did reload data from the data source. This event take 2 parameters

  1. succeeded (Boolean), true if the data fetch succeeded
  2. data|rejection (Object)
    • If the data fetch succeeded, pass the fetched data in form of { totalCount, items }. Where totalCount is the server side total item count, and the items is the array of data items with current query condition
    • If the data fetch failed, pass the rejection object, which is usually an Error object from the data source

didUpdate

The GridView did update its configuration and redraw.


willRedraw

The GridView will redraw the DOM. This event may trigger frequently when virtualization is enabled.


willRedrawFooter


willRedrawHeader


willReload

The GridView will reload data from the data source.


willUpdate

The GridView will update its configuration and redraw.


wwillRedrawBody