src/interfaces/IParamsColEditorAutoComplete.ts
Properties |
|
dataKey |
dataKey:
|
Type : string
|
Optional |
field |
field:
|
Type : string
|
Optional |
forceSelection |
forceSelection:
|
Type : boolean
|
Optional |
multiple |
multiple:
|
Type : boolean
|
Optional |
placeholder |
placeholder:
|
Type : string
|
Optional |
prepare |
prepare:
|
Type : function
|
Optional |
results |
results:
|
Type : any[]
|
search |
search:
|
Type : function
|
import { RestAdminComponent } from '../component';
import { IParamsCol } from './';
export interface IParamsColEditorAutoComplete {
search: (
str: string,
self?: RestAdminComponent,
selected?: any,
col?: IParamsCol
) => any;
results: any[];
prepare?: (
self?: RestAdminComponent,
selected?: any,
col?: IParamsCol
) => any;
forceSelection?: boolean;
multiple?: boolean;
placeholder?: string;
dataKey?: string;
field?: string;
}