File

src/interfaces/IParamsCol.ts

Index

Properties

Properties

display
display: IParamsColDisplay
Type : IParamsColDisplay
Optional

Display

editor
editor: IParamsColEditor
Type : IParamsColEditor
Optional

Editor

field
field: string
Type : string

field name

filter
filter: IParamsColFilter
Type : IParamsColFilter
Optional

Column filter

header
header: string
Type : string

Column header

sortable
sortable: boolean
Type : boolean
Optional

Whether it is sortable

style
style: Object
Type : Object
Optional

css style

import { IParamsColDisplay, IParamsColEditor, IParamsColFilter } from './';

export interface IParamsCol {
  /**
   * field name
   */
  field: string;

  /**
   * Column header
   */
  header: string;

  /**
   * css style
   */
  style?: Object;

  /**
   * Whether it is sortable
   */
  sortable?: boolean;

  /**
   * Column filter
   */
  filter?: IParamsColFilter;

  /**
   * Display
   */
  display?: IParamsColDisplay;

  /**
   * Editor
   */
  editor?: IParamsColEditor;
}

results matching ""

    No results matching ""