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

  • OptionalautocompleteAttributes?: string[]

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

  • OptionaldefaultValue?: string | "NOW"
  • OptionaldefaultValueDaysOffset?: number
  • OptionalfromDate?: string | "NOW"

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

  • OptionalfromDateDaysOffset?: number
  • OptionalfromDateElementId?: string

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

  • OptionalplaceholderValue?: string
  • OptionaltoDate?: string | "NOW"

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

  • OptionaltoDateDaysOffset?: number
  • OptionaltoDateElementId?: string

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