projects/wms-framework/src/lib/models/controls/IItemsSource.ts
Defines an object that can work as items source for a {DataGridModel} object
Properties |
internalArray |
internalArray:
|
Type : any[]
|
Gets the data to be bound to the grid. |
export interface IItemsSource {
/**
* Gets the data to be bound to the grid.
*
* @type {any[]}
* @memberof IDataGridItemsSource
*/
internalArray: any[];
}