InputDatefilter

Input component to perform date-related filters.

Component properties

id String

The attribute used to create the id property of the select input in the InputDatefilterSelect component.

default: undefined

name String

Attribute used as the content for the Label component created in the InputDatefilterSelect component.

default: null

originalId String

The attribute used to create the date inputs id property in the InputDatefilterBody component.

default: undefined

originalName String

The attribute used to create the date inputs name property in the InputDatefilterBody component.

default: undefined

resource String

This property is used to change the inputs name and id of Input component. See the Input component for more information and examples.

default: null

disabled Boolean

If true, the component is disabled.

default: false

fromFilterInput Object

Object that defines the component’s fromInput props, where the key is the id of the input. See the component Input.

default: {}
Exemplo
fromFilterInput: {
    label: "From",
    component: "datepicker",
    ref: "fromInput"
  }
}

toFilterInput Object

Object that defines the component’s toInput props, where the key is the id of the input. See the component Input.

default: {}
Exemplo
toFilterInput: {
    label: "To",
    component: "datepicker",
    ref: "toInput"
  }
}

okButton Object

Object that sets the component okButton properties. It can contain all the properties of a component Button.

default: {
    name: 'ok'
}