Type alias FormElementWithDate

FormElementWithDate: {
    autocompleteAttributes?: string[];
    defaultValue?: string | "NOW";
    defaultValueDaysOffset?: number;
    fromDate?: string | "NOW";
    fromDateDaysOffset?: number;
    fromDateElementId?: string;
    placeholderValue?: string;
    toDate?: string | "NOW";
    toDateDaysOffset?: number;
    toDateElementId?: string;
} & LookupFormElement & FormElementRequired & FormElementReadOnly

Type declaration

  • Optional autocompleteAttributes?: string[]

    Custom autocomplete attributes that will be added to the element during rendering

  • Optional defaultValue?: string | "NOW"
  • Optional defaultValueDaysOffset?: number
  • Optional fromDate?: string | "NOW"

    A string iso date or 'NOW' that references a starting date for a range. If passed with fromDateElementId, both will be allowed.

  • Optional fromDateDaysOffset?: number
  • Optional fromDateElementId?: string

    A string GUID that references the ID of an element. This takes precedence over fromDate if both are used for date ranges.

  • Optional placeholderValue?: string
  • Optional toDate?: string | "NOW"

    A string iso date or 'NOW' that references an end date for a range. If passed with toDateElementId, both will be allowed.

  • Optional toDateDaysOffset?: number
  • Optional toDateElementId?: string

    A string GUID that references the ID of an element. This takes precedence over toDate if both are used for date ranges.