Package org.opencms.widgets
Class CmsMultiSelectWidget
java.lang.Object
org.opencms.widgets.A_CmsWidget
org.opencms.widgets.A_CmsSelectWidget
org.opencms.widgets.CmsMultiSelectWidget
- All Implemented Interfaces:
I_CmsADEWidget
,I_CmsWidget
Provides a widget for a standard HTML form multi select list or a group of check boxes.
Please see the documentation of
for a description
about the configuration String syntax for the select options.CmsSelectWidgetOption
The multi select widget does use the following select options:
for the value of the optionCmsSelectWidgetOption.getValue()
for pre-selecting a specific valueCmsSelectWidgetOption.isDefault()
for the display name of the optionCmsSelectWidgetOption.getOption()
- Since:
- 6.0.0
-
Nested Class Summary
Nested classes/interfaces inherited from class org.opencms.widgets.A_CmsWidget
A_CmsWidget.CmsDummyWidgetDialog
-
Field Summary
Modifier and TypeFieldDescriptionstatic final String
Configuration parameter to set the height from the select widget in pixel.static final String
Configuration parameter to indicate the multi-select needs to be activated by a check box.Fields inherited from class org.opencms.widgets.A_CmsSelectWidget
CONFIGURATION_HEIGHT
Fields inherited from class org.opencms.widgets.A_CmsWidget
HELP_POSTFIX, LABEL_PREFIX
-
Constructor Summary
ConstructorDescriptionCreates a new select widget.CmsMultiSelectWidget
(String configuration) Creates a select widget with the specified select options.CmsMultiSelectWidget
(List<CmsSelectWidgetOption> configuration) Creates a select widget with the select options specified in the given configuration List.CmsMultiSelectWidget
(List<CmsSelectWidgetOption> configuration, boolean asCheckboxes) Creates a select widget with the select options specified in the given configuration List. -
Method Summary
Modifier and TypeMethodDescriptiongetDialogIncludes
(CmsObject cms, I_CmsWidgetDialog widgetDialog) Generates the necessary JavaScript inclusion code for this widget.getDialogWidget
(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Generates the widget HTML for the provided widget parameter.Returns the class name of the widget.Creates a duplicate of this widget instance.void
setConfiguration
(String configuration) Sets the configuration of this widget.void
setEditorValue
(CmsObject cms, Map<String, String[]> 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.static void
setMultiSelectEditorValue
(CmsObject cms, Map<String, String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Sets the value of the widget parameter from the provided form parameters.Methods inherited from class org.opencms.widgets.A_CmsSelectWidget
addSelectOption, getConfiguration, getConfiguration, getCssResourceLinks, getDefaultDisplayType, getHeight, getInitCall, getJavaScriptResourceLinks, getResourcePath, getSelectedValue, getSelectedValues, getSelectOptions, isInternal, parseSelectOptions, setSelectOptions
Methods inherited from class org.opencms.widgets.A_CmsWidget
equals, getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpKey, getHelpText, getJsHelpMouseHandler, getJSIncludeFile, getLabelKey, getWidgetStringValue, hashCode, isCompactViewEnabled
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.opencms.widgets.I_CmsWidget
getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpText, getWidgetStringValue, isCompactViewEnabled
-
Field Details
-
CONFIGURATION_ASCHECKBOXES
Configuration parameter to set the height from the select widget in pixel.- See Also:
-
CONFIGURATION_REQUIRES_ACTIVATION
Configuration parameter to indicate the multi-select needs to be activated by a check box.- See Also:
-
-
Constructor Details
-
CmsMultiSelectWidget
public CmsMultiSelectWidget()Creates a new select widget. -
CmsMultiSelectWidget
Creates a select widget with the select options specified in the given configuration List.The list elements must be of type
.CmsSelectWidgetOption
- Parameters:
configuration
- the configuration (possible options) for the select widget- See Also:
-
CmsMultiSelectWidget
Creates a select widget with the select options specified in the given configuration List.The list elements must be of type
.CmsSelectWidgetOption
- Parameters:
configuration
- the configuration (possible options) for the select widgetasCheckboxes
- indicates if used html code is a multi selection list or a list of checkboxes- See Also:
-
CmsMultiSelectWidget
Creates a select widget with the specified select options.- Parameters:
configuration
- the configuration (possible options) for the select box
-
-
Method Details
-
setMultiSelectEditorValue
public static void setMultiSelectEditorValue(CmsObject cms, Map<String, String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Sets the value of the widget parameter from the provided form parameters.- Parameters:
cms
- the cms contextformParameters
- the form parameterswidgetDialog
- the widget dialogparam
- the widget parameter
-
getDialogIncludes
Description copied from interface:I_CmsWidget
Generates the necessary JavaScript inclusion code for this widget.- Specified by:
getDialogIncludes
in interfaceI_CmsWidget
- Overrides:
getDialogIncludes
in classA_CmsWidget
- Parameters:
cms
- the current users OpenCms contextwidgetDialog
- the dialog where the widget is used on- Returns:
- the JavaScript inclusion code
- See Also:
-
getDialogWidget
public String getDialogWidget(CmsObject cms, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Description copied from interface:I_CmsWidget
Generates the widget HTML for the provided widget parameter.- Parameters:
cms
- an initialized instance of a CmsObjectwidgetDialog
- the dialog where the widget is used onparam
- the widget parameter to generate the widget for- Returns:
- the widget HTML for the provided widget parameter
- See Also:
-
getWidgetName
Description copied from interface:I_CmsADEWidget
Returns the class name of the widget.- Specified by:
getWidgetName
in interfaceI_CmsADEWidget
- Overrides:
getWidgetName
in classA_CmsSelectWidget
- Returns:
- the class name
- See Also:
-
newInstance
Description copied from interface:I_CmsWidget
Creates a duplicate of this widget instance.- Returns:
- a duplicate of this widget instance
- See Also:
-
setConfiguration
Description copied from interface:I_CmsWidget
Sets the configuration of this widget.This can be used to enable / disable certain widget features that should not always be available, or to pass specific initialization information to the widget. It depends on the widget implementation on how this information is used.
- Specified by:
setConfiguration
in interfaceI_CmsWidget
- Overrides:
setConfiguration
in classA_CmsSelectWidget
- Parameters:
configuration
- the configuration to set- See Also:
-
setEditorValue
public void setEditorValue(CmsObject cms, Map<String, String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param) Description copied from interface:I_CmsWidget
Sets the value of in the given widget parameter by reading the "right" value from the offered map of parameters.- Specified by:
setEditorValue
in interfaceI_CmsWidget
- Overrides:
setEditorValue
in classA_CmsWidget
- Parameters:
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 for- See Also:
-