Package io.jmix.ui.component
Interface DateField<V>
- Type Parameters:
V- type of value
- All Superinterfaces:
Buffered,Component,Component.BelongToFrame,Component.Editable,Component.Focusable,Component.HasCaption,Component.HasDescription,Component.HasIcon,Field<V>,HasContextHelp,HasDatatype<V>,HasHtmlCaption,HasHtmlDescription,HasHtmlSanitizer,HasRange<V>,HasValidator<V>,HasValue<V>,HasValueSource<V>,Requirable,Validatable
- All Known Implementing Classes:
DateFieldImpl
@StudioComponent(caption="DateField",
category="Components",
xmlElement="dateField",
icon="io/jmix/ui/icon/component/dateField.svg",
canvasBehaviour=DATE_FIELD,
documentationURL="https://docs.jmix.io/jmix/%VERSION%/ui/vcl/components/date-field.html")
public interface DateField<V>
extends Field<V>, HasDatatype<V>, Buffered, Component.Focusable, HasRange<V>
A date entry component, which displays the actual date selector or date with time.
-
Nested Class Summary
Nested ClassesNested classes/interfaces inherited from interface io.jmix.ui.component.Component
Component.Alignment, Component.BelongToFrame, Component.Disposable, Component.Editable, Component.Focusable, Component.HasCaption, Component.HasDescription, Component.HasIcon, Component.HasXmlDescriptor, Component.WrapperNested classes/interfaces inherited from interface io.jmix.ui.component.HasContextHelp
HasContextHelp.ContextHelpIconClickEventNested classes/interfaces inherited from interface io.jmix.ui.component.HasValue
HasValue.ValueChangeEvent<V> -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final Stringstatic final org.springframework.core.ParameterizedTypeReference<DateField<LocalDateTime>>static final org.springframework.core.ParameterizedTypeReference<DateField<OffsetDateTime>>Fields inherited from interface io.jmix.ui.component.Component
AUTO_SIZE, AUTO_SIZE_PX, FULL_SIZE -
Method Summary
Modifier and TypeMethodDescriptionUsegetZoneId()booleanvoidsetAutofill(boolean autofill) Sets whether autofill feature is enabled.voidsetDateFormat(String dateFormat) voidsetResolution(DateField.Resolution resolution) voidsetTimeMode(TimeField.TimeMode timeMode) Sets time mode to use (12h AM/PM or 24h).voidsetTimeZone(TimeZone timeZone) voidMethods inherited from interface io.jmix.ui.component.Buffered
commit, discard, isBuffered, isModified, setBufferedMethods inherited from interface io.jmix.ui.component.Component
addStyleName, getAlignment, getHeight, getHeightSizeUnit, getId, getParent, getStyleName, getWidth, getWidthSizeUnit, isEnabled, isEnabledRecursive, isResponsive, isVisible, isVisibleRecursive, removeStyleName, setAlignment, setEnabled, setHeight, setHeightAuto, setHeightFull, setId, setParent, setResponsive, setSizeAuto, setSizeFull, setStyleName, setVisible, setWidth, setWidthAuto, setWidthFull, unwrap, unwrapComposition, unwrapCompositionOrNull, unwrapOrNull, withUnwrapped, withUnwrappedCompositionMethods inherited from interface io.jmix.ui.component.Component.BelongToFrame
getFrame, setFrameMethods inherited from interface io.jmix.ui.component.Component.Editable
isEditable, isEditableWithParent, setEditableMethods inherited from interface io.jmix.ui.component.Component.Focusable
focus, getTabIndex, isFocusable, setFocusable, setTabIndexMethods inherited from interface io.jmix.ui.component.Component.HasCaption
getCaption, setCaptionMethods inherited from interface io.jmix.ui.component.Component.HasDescription
getDescription, setDescriptionMethods inherited from interface io.jmix.ui.component.Component.HasIcon
getIcon, setIcon, setIconFromSetMethods inherited from interface io.jmix.ui.component.HasContextHelp
getContextHelpIconClickHandler, getContextHelpText, isContextHelpTextHtmlEnabled, setContextHelpIconClickHandler, setContextHelpText, setContextHelpTextHtmlEnabledMethods inherited from interface io.jmix.ui.component.HasDatatype
getDatatype, setDatatypeMethods inherited from interface io.jmix.ui.component.HasHtmlCaption
isCaptionAsHtml, setCaptionAsHtmlMethods inherited from interface io.jmix.ui.component.HasHtmlDescription
isDescriptionAsHtml, setDescriptionAsHtmlMethods inherited from interface io.jmix.ui.component.HasHtmlSanitizer
isHtmlSanitizerEnabled, setHtmlSanitizerEnabledMethods inherited from interface io.jmix.ui.component.HasRange
getRangeEnd, getRangeStart, setRangeEnd, setRangeStartMethods inherited from interface io.jmix.ui.component.HasValidator
addValidator, addValidators, getValidators, removeValidatorMethods inherited from interface io.jmix.ui.component.HasValue
addValueChangeListener, clear, getEmptyValue, getValue, isEmpty, setValueMethods inherited from interface io.jmix.ui.component.data.HasValueSource
getValueSource, setValueSourceMethods inherited from interface io.jmix.ui.component.Requirable
getRequiredMessage, isRequired, setRequired, setRequiredMessageMethods inherited from interface io.jmix.ui.component.Validatable
isValid, isValidateOnCommit, validate
-
Field Details
-
NAME
- See Also:
-
TYPE_DEFAULT
-
TYPE_DATE
-
TYPE_DATETIME
-
TYPE_LOCALDATE
-
TYPE_LOCALDATETIME
static final org.springframework.core.ParameterizedTypeReference<DateField<LocalDateTime>> TYPE_LOCALDATETIME -
TYPE_OFFSETDATETIME
static final org.springframework.core.ParameterizedTypeReference<DateField<OffsetDateTime>> TYPE_OFFSETDATETIME
-
-
Method Details
-
getResolution
-
setResolution
@StudioProperty(type=ENUMERATION, options={"YEAR","MONTH","DAY","HOUR","MIN","SEC"}) void setResolution(DateField.Resolution resolution) -
getDateFormat
-
setDateFormat
-
getTimeZone
UsegetZoneId() -
setTimeZone
-
setZoneId
-
getZoneId
-
setAutofill
Sets whether autofill feature is enabled.When enabled uses current month and year.
- Parameters:
autofill- whether autofill is enabled
-
isAutofill
boolean isAutofill()- Returns:
- whether autofill is enabled
-
setTimeMode
@StudioProperty(name="timeMode", type=ENUMERATION, defaultValue="H_24", options={"H_12","H_24"}) void setTimeMode(TimeField.TimeMode timeMode) Sets time mode to use (12h AM/PM or 24h).By default the 24h mode is used.
- Parameters:
timeMode- time mode
-
getTimeMode
- Returns:
TimeField.TimeModethat is used by component
-