File

packages/core/src/lib/form/form-config.interface.ts

Description

FormConfig is an extension of ItemConfig.

Extends

ItemConfig

Index

Properties

Properties

disableColumnFilter
disableColumnFilter: boolean
Type : boolean
Optional

If true, the column visibility filter will not be visible

hideSubmitButton
hideSubmitButton: boolean
Type : boolean
Optional

If true, no submit button will be rendered.

submitButtonLabel
submitButtonLabel: string
Type : string
Optional

The label of the submit button

import { ItemConfig } from '../item/item-config.interface';

/** FormConfig is an extension of ItemConfig. */
export interface FormConfig<T> extends ItemConfig<T> {
  /** If true, no submit button will be rendered. */
  hideSubmitButton?: boolean;
  /** The label of the submit button */
  submitButtonLabel?: string;
  /** If true, the column visibility filter will not be visible */
  disableColumnFilter?: boolean;
}

result-matching ""

    No results matching ""