com.vaadin.ui.
Class PopupDateField
java.lang.Object
com.vaadin.ui.AbstractComponent
com.vaadin.ui.AbstractField
com.vaadin.ui.DateField
com.vaadin.ui.PopupDateField
All Implemented Interfaces:
Buffered, BufferedValidatable, Property, Property.Editor, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer, Validatable, Action.ShortcutNotifier, FieldEvents.BlurNotifier, FieldEvents.FocusNotifier, MethodEventSource, Paintable, Sizeable, VariableOwner, Component, Component.Focusable, Field, Serializable, EventListener
- extends DateField
public class PopupDateField
A date entry component, which displays the actual date selector as a popup.
Since:
5.0
Version:
6.8.18
Author:
Vaadin Ltd.
See Also:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class com.vaadin.ui.DateField |
---|
DateField.UnparsableDateString |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractField |
---|
AbstractField.FocusShortcut, AbstractField.ReadOnlyStatusChangeEvent |
Nested classes/interfaces inherited from class com.vaadin.ui.AbstractComponent |
---|
AbstractComponent.ComponentErrorEvent, AbstractComponent.ComponentErrorHandler |
Nested classes/interfaces inherited from interface com.vaadin.ui.Field |
---|
Field.ValueChangeEvent |
Nested classes/interfaces inherited from interface com.vaadin.data.Buffered |
---|
Buffered.SourceException |
Nested classes/interfaces inherited from interface com.vaadin.data.Property |
---|
Property.ConversionException, Property.Editor, Property.ReadOnlyException, Property.ReadOnlyStatusChangeListener, Property.ReadOnlyStatusChangeNotifier, Property.ValueChangeListener, Property.ValueChangeNotifier, Property.Viewer |
Field Summary |
---|
Fields inherited from class com.vaadin.ui.DateField |
---|
RESOLUTION_DAY, RESOLUTION_HOUR, RESOLUTION_MIN, RESOLUTION_MONTH, RESOLUTION_MSEC, RESOLUTION_SEC, RESOLUTION_YEAR |
Constructor Summary | |
---|---|
PopupDateField()
|
|
PopupDateField(Property dataSource)
|
|
PopupDateField(String caption)
|
|
PopupDateField(String caption,
Date value)
|
|
PopupDateField(String caption,
Property dataSource)
|
Method Summary | |
---|---|
String |
getInputPrompt()
Gets the current input prompt. |
void |
paintContent(PaintTarget target)
Paints any needed component-specific things to the given UIDL stream. |
void |
setInputPrompt(String inputPrompt)
Sets the input prompt - a textual prompt that is displayed when the field would otherwise be empty, to prompt the user for input. |
Methods inherited from class com.vaadin.ui.DateField |
---|
addListener, addListener, changeVariables, getDateFormat, getParseErrorMessage, getResolution, getTimeZone, getType, handleUnparsableDateString, isLenient, isShowISOWeekNumbers, isValid, removeListener, removeListener, setDateFormat, setInternalValue, setLenient, setParseErrorMessage, setPropertyDataSource, setResolution, setShowISOWeekNumbers, setTimeZone, setValue, shouldHideErrors, validate |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface com.vaadin.ui.Field |
---|
getDescription, setCaption, setDescription |
Constructor Detail |
---|
PopupDateField
public PopupDateField()
PopupDateField
public PopupDateField(Property dataSource)
throws IllegalArgumentException
Throws:
PopupDateField
public PopupDateField(String caption,
Date value)
PopupDateField
public PopupDateField(String caption,
Property dataSource)
PopupDateField
public PopupDateField(String caption)
Method Detail |
---|
paintContent
public void paintContent(PaintTarget target)
throws PaintException
- Overrides:
paintContent
in classDateField
- Parameters:
target
- the target UIDL stream where the component should paint itself to- Throws:
PaintException
- if the paint operation failed.
Description copied from class: AbstractComponent
Paints any needed component-specific things to the given UIDL stream. The
more general AbstractComponent.paint(PaintTarget)
method handles all general
attributes common to all components, and it calls this method to paint
any component-specific attributes to the UIDL stream.
getInputPrompt
public String getInputPrompt()
- Returns:
- the current input prompt, or null if not enabled
- See Also:
setInputPrompt(String)
Gets the current input prompt.
setInputPrompt
public void setInputPrompt(String inputPrompt)
- Parameters:
inputPrompt
-
Sets the input prompt - a textual prompt that is displayed when the field would otherwise be empty, to prompt the user for input.