interface ValueFormater { datasource: Datasource<any>; fromSource(value: any,
type: DataTypes,
attribute: string,
isFilter: boolean): any; fromSourceDisplay(value: any,
type: DataTypes,
attribute: string,
isFilter: boolean): any; fromSourceGrouping(value: any,
type: DataTypes,
attribute: string,
isFilter: boolean): any; placeholder(type: DataTypes,
_attribute: string,
isFilter: boolean): string; toFilter(value: any,
type: DataTypes,
attribute: string,
isFilter: boolean): any; toSource(value: any,
type: DataTypes,
attribute: string,
isFilter: boolean): any; } Properties
datasource
Methods
fromSource
- fromSource(value, type, attribute, isFilter): any
Parameters
- value: any
- type: DataTypes
- attribute: string
- isFilter: boolean
Returns any
fromSourceDisplay
- fromSourceDisplay(value, type, attribute, isFilter): any
Parameters
- value: any
- type: DataTypes
- attribute: string
- isFilter: boolean
Returns any
fromSourceGrouping
- fromSourceGrouping(value, type, attribute, isFilter): any
Parameters
- value: any
- type: DataTypes
- attribute: string
- isFilter: boolean
Returns any
placeholder
- placeholder(type, _attribute, isFilter): string
Parameters
- type: DataTypes
- _attribute: string
- isFilter: boolean
Returns string
toFilter
- toFilter(value, type, attribute, isFilter): any
Parameters
- value: any
- type: DataTypes
- attribute: string
- isFilter: boolean
Returns any
toSource
- toSource(value, type, attribute, isFilter): any
Parameters
- value: any
- type: DataTypes
- attribute: string
- isFilter: boolean
Returns any
used by grid to insert in edit cells/filter