DataDefinition
[ Interface ]
export interface DataDefinition {
value: any;
text: string;
source?: string;
width?: number;
height?: number;
}
Data definition if the column shows 'Image' or 'Combobox'.
Properties
Name | Type | Description |
---|---|---|
value | Value | |
text | Display text for a 'ComboBox', alternative display text for an 'Image'. | |
source [optional] | Web address of an image (only for 'Image') | |
width [optional] | Pixel width of the image (only for 'Image') | |
height [optional] | Pixel height of the image (only for 'Image') |
Available from 1.8 |