Type alias iDataTableOptions

iDataTableOptions: {
    allowHeaderMenu: boolean;
    forSelect?: boolean;
    hideHeader?: boolean;
    multiOperation: boolean;
    noFilters?: boolean;
    singleSelectOnly: boolean;
}

Options for data table

Type declaration

  • allowHeaderMenu: boolean

    When true, table does not show menus on header for columns. Used for small table with only a few lines where filters and ordering makes no sense.

  • Optional forSelect?: boolean

    Open for selection (widnows purpose = select single or select multi). Window send dblclick as a select operation both for single and multiple items default: unset

  • Optional hideHeader?: boolean
  • multiOperation: boolean

    force multiselect regardless what defines operations. When false, table has no select column and is usefull probably only to show list of values without any operation suppot

  • Optional noFilters?: boolean

    Mark not to show filters - used for small tables with only a few fields Field is set by the hTable internally from the view parameter noFilters

  • singleSelectOnly: boolean

    Rejects selecting more than a single line. Used only for select lists. Used instead of multiOperation that should currently be always on, because event for singleSelect is the select column important default value: false