|
UIX 2.2.16 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object | +--oracle.cabo.ui.DeprecatedUINode | +--oracle.cabo.ui.BaseUINode | +--oracle.cabo.ui.BaseMutableUINode | +--oracle.cabo.ui.beans.BaseWebBean | +--oracle.cabo.ui.beans.MarlinBean | +--oracle.cabo.ui.beans.form.InlineDatePickerBean
The InlineDatePicker component is used in conjunction with a DateField to allow the user to quickly select a date value without having to navigate to a secondary window. The InlineDatePicker is typically used for tasks where selecting a date value is a critical part of the task flow. Instead of requiring the user to select the date from a secondary window, an InlineDatePicker can be displayed inline in the page contents. Users can then select a date directly within the InlineDatePicker, which will cause the currently focused DateField to be updated with the selected date.
In order to indicate that a particular DateField should be updated in response to InlineDatePicker selection changes, the the DateField's pickerId attribute must be set to the id of the associated InlineDatePicker component.
The InlineDatePicker component uses partial page rendering to update itself as the user navigates between months. In environments where partial page rendering is not supported, the InlineDatePicker component will not be rendered. Instead, the DateField may provide access to a date picker in a secondary window to facilitate date selection.
<dateField name="date2" pickerId="idp1"/> <inlineDatePicker id="idp1"/>
Constructor Summary | |
|
InlineDatePickerBean()
Construct an instance of the InlineDatePickerBean. |
protected |
InlineDatePickerBean(boolean ignored,
java.lang.String localName)
Construct an instance of the InlineDatePickerBean. |
|
InlineDatePickerBean(java.util.Date value)
Construct an instance of the InlineDatePickerBean. |
|
InlineDatePickerBean(java.util.Date value,
java.util.Date minValue,
java.util.Date maxValue)
Construct an instance of the InlineDatePickerBean. |
Method Summary | |
java.util.Date |
getMaxValue()
Gets The maximum value allowed for the Date value. |
static java.util.Date |
getMaxValue(MutableUINode bean)
Gets The maximum value allowed for the Date value. |
java.util.Date |
getMinValue()
Gets The minimum value allowed for the Date value. |
static java.util.Date |
getMinValue(MutableUINode bean)
Gets The minimum value allowed for the Date value. |
java.util.Date |
getValue()
Gets The Date value of the InlineDatePicker. |
static java.util.Date |
getValue(MutableUINode bean)
Gets The Date value of the InlineDatePicker. |
void |
setMaxValue(java.util.Date maxValue)
Sets The maximum value allowed for the Date value. |
void |
setMaxValue(long maxValue)
Sets The maximum value allowed for the Date value. |
static void |
setMaxValue(MutableUINode bean,
java.util.Date maxValue)
Sets The maximum value allowed for the Date value. |
static void |
setMaxValue(MutableUINode bean,
long maxValue)
Sets The maximum value allowed for the Date value. |
void |
setMinValue(java.util.Date minValue)
Sets The minimum value allowed for the Date value. |
void |
setMinValue(long minValue)
Sets The minimum value allowed for the Date value. |
static void |
setMinValue(MutableUINode bean,
java.util.Date minValue)
Sets The minimum value allowed for the Date value. |
static void |
setMinValue(MutableUINode bean,
long minValue)
Sets The minimum value allowed for the Date value. |
void |
setValue(java.util.Date value)
Sets The Date value of the InlineDatePicker. |
void |
setValue(long value)
Sets The Date value of the InlineDatePicker. |
static void |
setValue(MutableUINode bean,
java.util.Date value)
Sets The Date value of the InlineDatePicker. |
static void |
setValue(MutableUINode bean,
long value)
Sets The Date value of the InlineDatePicker. |
void |
setValueBinding(BoundValue boundValue)
Binds the The Date value of the InlineDatePicker. |
static void |
setValueBinding(MutableUINode bean,
BoundValue boundValue)
Binds the The Date value of the InlineDatePicker. |
static void |
setValueBinding(MutableUINode bean,
java.lang.Object selectKey)
Binds the The Date value of the InlineDatePicker. |
static void |
setValueBinding(MutableUINode bean,
java.lang.String dataNamespace,
java.lang.String dataName,
java.lang.Object selectKey)
Binds the The Date value of the InlineDatePicker. |
void |
setValueBinding(java.lang.Object selectKey)
Binds the The Date value of the InlineDatePicker. |
void |
setValueBinding(java.lang.String dataNamespace,
java.lang.String dataName,
java.lang.Object selectKey)
Binds the The Date value of the InlineDatePicker. |
Methods inherited from class oracle.cabo.ui.beans.MarlinBean |
isEqualMarlinName |
Methods inherited from class oracle.cabo.ui.BaseUINode |
getAttributeNames, getAttributeValue, getAttributeValueImpl, getChildArray, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getPreorderDescendentAttributeValue, getRawAttributeValue, getRenderedUINode, getRenderer, getRenderer, render, render, toString |
Methods inherited from class oracle.cabo.ui.DeprecatedUINode |
getAttributeValue, getChildNames, getNamedChild |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Methods inherited from interface oracle.cabo.ui.UINode |
getAttributeNames, getAttributeValue, getAttributeValue, getChildNames, getChildNames, getIndexedChild, getIndexedChild, getIndexedChildCount, getLocalName, getNamedChild, getNamedChild, getNamespaceURI, getNodeID, getNodeRole, getRawAttributeValue, render, render |
Constructor Detail |
public InlineDatePickerBean()
public InlineDatePickerBean(java.util.Date value)
value
- The Date value of the InlineDatePicker.public InlineDatePickerBean(java.util.Date value, java.util.Date minValue, java.util.Date maxValue)
value
- The Date value of the InlineDatePicker.minValue
- The minimum value allowed for the Date value.maxValue
- The maximum value allowed for the Date value.protected InlineDatePickerBean(boolean ignored, java.lang.String localName)
Method Detail |
public final java.util.Date getValue()
public final void setValue(java.util.Date value)
public final void setValue(long value)
public final void setValueBinding(BoundValue boundValue)
boundValue
- a BoundValue implementation to be used
to retrieve the value.public final void setValueBinding(java.lang.Object selectKey)
selectKey
- the key to be passed to selectValue()
on the
current DataObject
, e.g., the DataObject for the current
table row.public final void setValueBinding(java.lang.String dataNamespace, java.lang.String dataName, java.lang.Object selectKey)
dataNamespace
- the namespace to be passed to
RenderingContext.getDataObject()
dataName
- the name to be passed to
RenderingContext.getDataObject()
selectKey
- the key to be passed to selectValue()
on the
DataObject
.public final java.util.Date getMinValue()
public final void setMinValue(java.util.Date minValue)
public final void setMinValue(long minValue)
public final java.util.Date getMaxValue()
public final void setMaxValue(java.util.Date maxValue)
public final void setMaxValue(long maxValue)
public static java.util.Date getValue(MutableUINode bean)
public static void setValue(MutableUINode bean, java.util.Date value)
public static void setValue(MutableUINode bean, long value)
public static void setValueBinding(MutableUINode bean, BoundValue boundValue)
boundValue
- a BoundValue implementation to be used
to retrieve the value.public static void setValueBinding(MutableUINode bean, java.lang.Object selectKey)
selectKey
- the key to be passed to selectValue()
on the
current DataObject
, e.g., the DataObject for the current
table row.public static void setValueBinding(MutableUINode bean, java.lang.String dataNamespace, java.lang.String dataName, java.lang.Object selectKey)
dataNamespace
- the namespace to be passed to
RenderingContext.getDataObject()
dataName
- the name to be passed to
RenderingContext.getDataObject()
selectKey
- the key to be passed to selectValue()
on the
DataObject
.public static java.util.Date getMinValue(MutableUINode bean)
public static void setMinValue(MutableUINode bean, java.util.Date minValue)
public static void setMinValue(MutableUINode bean, long minValue)
public static java.util.Date getMaxValue(MutableUINode bean)
public static void setMaxValue(MutableUINode bean, java.util.Date maxValue)
public static void setMaxValue(MutableUINode bean, long maxValue)
|
UIX 2.2.16 | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |