|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.opencms.widgets.A_CmsWidget
org.opencms.widgets.CmsCalendarWidget
public class CmsCalendarWidget
Provides a DHTML calendar widget, for use on a widget dialog.
Field Summary |
---|
Fields inherited from class org.opencms.widgets.A_CmsWidget |
---|
HELP_POSTFIX, LABEL_PREFIX |
Constructor Summary | |
---|---|
CmsCalendarWidget()
Creates a new calendar widget. |
|
CmsCalendarWidget(java.lang.String configuration)
Creates a new calendar widget with the given configuration. |
Method Summary | |
---|---|
static java.lang.String |
calendarIncludes(java.util.Locale locale)
Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page. |
static java.lang.String |
calendarIncludes(java.util.Locale locale,
java.lang.String style)
Creates the HTML JavaScript and stylesheet includes required by the calendar for the head of the page. |
static java.lang.String |
calendarInit(CmsMessages messages,
java.lang.String inputFieldId,
java.lang.String triggerButtonId,
java.lang.String align,
boolean singleClick,
boolean weekNumbers,
boolean mondayFirst,
java.lang.String dateStatusFunc,
boolean showTime)
Generates the HTML to initialize the JavaScript calendar element on the end of a page. |
static long |
getCalendarDate(CmsMessages messages,
java.lang.String dateString,
boolean useTime)
Creates the time in milliseconds from the given parameter. |
static java.lang.String |
getCalendarJavaDateFormat(java.lang.String dateFormat)
Parses the JavaScript calendar date format to the java patterns of SimpleDateFormat. |
static java.lang.String |
getCalendarLocalizedTime(java.util.Locale locale,
CmsMessages messages,
long timestamp)
Returns the given timestamp as String formatted in a localized pattern. |
java.lang.String |
getDialogIncludes(CmsObject cms,
I_CmsWidgetDialog widgetDialog)
Generates the necessary JavaScript inclusion code for this widget. |
java.lang.String |
getDialogWidget(CmsObject cms,
I_CmsWidgetDialog widgetDialog,
I_CmsWidgetParameter param)
Generates the widget HTML for the provided widget parameter. |
java.lang.String |
getWidgetStringValue(CmsObject cms,
I_CmsWidgetDialog widgetDialog,
I_CmsWidgetParameter param)
Returns the
processed according to the output rules of this widget and the given widget dialog. |
I_CmsWidget |
newInstance()
Creates a duplicate of this widget instance. |
void |
setEditorValue(CmsObject cms,
java.util.Map formParameters,
I_CmsWidgetDialog widgetDialog,
I_CmsWidgetParameter param)
Sets the value of in the given widget parameter by reading the "right" value from the offered map of parameters. |
Methods inherited from class org.opencms.widgets.A_CmsWidget |
---|
equals, getConfiguration, getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpKey, getHelpText, getJsHelpMouseHandler, getJSIncludeFile, getLabelKey, hashCode, setConfiguration |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public CmsCalendarWidget()
public CmsCalendarWidget(java.lang.String configuration)
configuration
- the configuration to useMethod Detail |
---|
public static java.lang.String calendarIncludes(java.util.Locale locale)
The default "opencms"
style is used.
locale
- the locale to use for the calendar
calendarIncludes(Locale, String)
public static java.lang.String calendarIncludes(java.util.Locale locale, java.lang.String style)
locale
- the locale to use for the calendarstyle
- the name of the used calendar style, e.g. "system", "blue"
public static java.lang.String calendarInit(CmsMessages messages, java.lang.String inputFieldId, java.lang.String triggerButtonId, java.lang.String align, boolean singleClick, boolean weekNumbers, boolean mondayFirst, java.lang.String dateStatusFunc, boolean showTime)
This method must be called at the end of a HTML page, e.g. before the closing <body> tag.
messages
- the messages to use (for date and time formats)inputFieldId
- the ID of the input field where the date is pasted totriggerButtonId
- the ID of the button which triggers the calendaralign
- initial position of the calendar popup elementsingleClick
- if true, a single click selects a date and closes the calendar, otherwise calendar is closed by doubleclickweekNumbers
- show the week numbers in the calendar or notmondayFirst
- show monday as first day of weekdateStatusFunc
- name of the function which determines if/how a date should be disabledshowTime
- true if the time selector should be shown, otherwise false
public static long getCalendarDate(CmsMessages messages, java.lang.String dateString, boolean useTime) throws java.text.ParseException
messages
- the messages that contain the time format definitionsdateString
- the String representation of the dateuseTime
- true if the time should be parsed, too, otherwise false
java.text.ParseException
- if something goes wrongpublic static java.lang.String getCalendarJavaDateFormat(java.lang.String dateFormat)
dateFormat
- the dateformat String of the JS calendar
public static java.lang.String getCalendarLocalizedTime(java.util.Locale locale, CmsMessages messages, long timestamp)
locale
- the locale for the time formatmessages
- the messages that contain the time format definitionstimestamp
- the time to format
public java.lang.String getDialogIncludes(CmsObject cms, I_CmsWidgetDialog widgetDialog)
I_CmsWidget
getDialogIncludes
in interface I_CmsWidget
getDialogIncludes
in class A_CmsWidget
cms
- the current users OpenCms contextwidgetDialog
- the dialog where the widget is used on
I_CmsWidget.getDialogIncludes(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog)
public java.lang.String getDialogWidget(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param)
I_CmsWidget
cms
- an initialized instance of a CmsObjectwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for
I_CmsWidget.getDialogWidget(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
public java.lang.String getWidgetStringValue(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param)
I_CmsWidget
I_CmsWidgetParameter.getStringValue(CmsObject)
processed according to the output rules of this widget and the given widget dialog.
getWidgetStringValue
in interface I_CmsWidget
getWidgetStringValue
in class A_CmsWidget
cms
- the current users OpenCms contextwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for
I_CmsWidgetParameter.getStringValue(CmsObject)
processed according to the output rules of this widgetA_CmsWidget.getWidgetStringValue(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
public I_CmsWidget newInstance()
I_CmsWidget
I_CmsWidget.newInstance()
public void setEditorValue(CmsObject cms, java.util.Map formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param)
I_CmsWidget
setEditorValue
in interface I_CmsWidget
setEditorValue
in class A_CmsWidget
cms
- the current users OpenCms contextformParameters
- the map of parameters to get the value fromwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget forI_CmsWidget.setEditorValue(org.opencms.file.CmsObject, java.util.Map, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)
|
||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |