File

src/interfaces/IParamsColEditorAutoComplete.ts

Index

Properties

Properties

dataKey
dataKey: string
Type : string
Optional
field
field: string
Type : string
Optional
forceSelection
forceSelection: boolean
Type : boolean
Optional
multiple
multiple: boolean
Type : boolean
Optional
placeholder
placeholder: string
Type : string
Optional
prepare
prepare: function
Type : function
Optional
results
results: any[]
Type : any[]
search
search: function
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;
}

results matching ""

    No results matching ""