org.opencms.widgets
Class CmsMultiSelectWidget

java.lang.Object
  extended by org.opencms.widgets.A_CmsWidget
      extended by org.opencms.widgets.A_CmsSelectWidget
          extended by org.opencms.widgets.CmsMultiSelectWidget
All Implemented Interfaces:
I_CmsWidget

public class CmsMultiSelectWidget
extends A_CmsSelectWidget

Provides a widget for a standard HTML form multi select list or a group of check boxes.

Please see the documentation of CmsSelectWidgetOption for a description about the configuration String syntax for the select options.

The multi select widget does use the following select options:

Since:
6.0.0

Field Summary
static java.lang.String CONFIGURATION_ASCHECKBOXES
          Configuration parameter to set the height from the select widget in pixel.
static java.lang.String CONFIGURATION_REQUIRES_ACTIVATION
          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
CmsMultiSelectWidget()
          Creates a new select widget.
CmsMultiSelectWidget(java.util.List<CmsSelectWidgetOption> configuration)
          Creates a select widget with the select options specified in the given configuration List.
CmsMultiSelectWidget(java.util.List<CmsSelectWidgetOption> configuration, boolean asCheckboxes)
          Creates a select widget with the select options specified in the given configuration List.
CmsMultiSelectWidget(java.lang.String configuration)
          Creates a select widget with the specified select options.
 
Method Summary
 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.
 I_CmsWidget newInstance()
          Creates a duplicate of this widget instance.
 void setConfiguration(java.lang.String configuration)
          Sets the configuration of this widget.
 void setEditorValue(CmsObject cms, java.util.Map<java.lang.String,java.lang.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, java.util.Map<java.lang.String,java.lang.String[]> formParameters, I_CmsWidgetDialog widgetDialog, I_CmsWidgetParameter param)
           
 
Methods inherited from class org.opencms.widgets.A_CmsSelectWidget
addSelectOption, getConfiguration, getHeight, getSelectedValue, getSelectedValues, getSelectOptions, parseSelectOptions, setSelectOptions
 
Methods inherited from class org.opencms.widgets.A_CmsWidget
equals, getDialogHtmlEnd, getDialogInitCall, getDialogInitMethod, getHelpBubble, getHelpKey, getHelpText, getJsHelpMouseHandler, getJSIncludeFile, getLabelKey, getWidgetStringValue, hashCode
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

CONFIGURATION_ASCHECKBOXES

public static final java.lang.String CONFIGURATION_ASCHECKBOXES
Configuration parameter to set the height from the select widget in pixel.

See Also:
Constant Field Values

CONFIGURATION_REQUIRES_ACTIVATION

public static final java.lang.String CONFIGURATION_REQUIRES_ACTIVATION
Configuration parameter to indicate the multi-select needs to be activated by a check box.

See Also:
Constant Field Values
Constructor Detail

CmsMultiSelectWidget

public CmsMultiSelectWidget()
Creates a new select widget.


CmsMultiSelectWidget

public CmsMultiSelectWidget(java.util.List<CmsSelectWidgetOption> configuration)
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:
CmsSelectWidgetOption

CmsMultiSelectWidget

public CmsMultiSelectWidget(java.util.List<CmsSelectWidgetOption> configuration,
                            boolean asCheckboxes)
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
asCheckboxes - indicates if used html code is a multi selection list or a list of checkboxes
See Also:
CmsSelectWidgetOption

CmsMultiSelectWidget

public CmsMultiSelectWidget(java.lang.String configuration)
Creates a select widget with the specified select options.

Parameters:
configuration - the configuration (possible options) for the select box
Method Detail

setMultiSelectEditorValue

public static void setMultiSelectEditorValue(CmsObject cms,
                                             java.util.Map<java.lang.String,java.lang.String[]> formParameters,
                                             I_CmsWidgetDialog widgetDialog,
                                             I_CmsWidgetParameter param)
Parameters:
cms -
formParameters -
widgetDialog -
param -

getDialogIncludes

public java.lang.String getDialogIncludes(CmsObject cms,
                                          I_CmsWidgetDialog widgetDialog)
Description copied from interface: I_CmsWidget
Generates the necessary JavaScript inclusion code for this widget.

Specified by:
getDialogIncludes in interface I_CmsWidget
Overrides:
getDialogIncludes in class A_CmsWidget
Parameters:
cms - the current users OpenCms context
widgetDialog - the dialog where the widget is used on
Returns:
the JavaScript inclusion code
See Also:
I_CmsWidget.getDialogIncludes(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog)

getDialogWidget

public java.lang.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 CmsObject
widgetDialog - the dialog where the widget is used on
param - the widget parameter to generate the widget for
Returns:
the widget HTML for the provided widget parameter
See Also:
I_CmsWidget.getDialogWidget(org.opencms.file.CmsObject, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)

newInstance

public I_CmsWidget newInstance()
Description copied from interface: I_CmsWidget
Creates a duplicate of this widget instance.

Returns:
a duplicate of this widget instance
See Also:
I_CmsWidget.newInstance()

setConfiguration

public void setConfiguration(java.lang.String configuration)
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 interface I_CmsWidget
Overrides:
setConfiguration in class A_CmsSelectWidget
Parameters:
configuration - the configuration to set
See Also:
A_CmsWidget.setConfiguration(java.lang.String)

setEditorValue

public void setEditorValue(CmsObject cms,
                           java.util.Map<java.lang.String,java.lang.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 interface I_CmsWidget
Overrides:
setEditorValue in class A_CmsWidget
Parameters:
cms - the current users OpenCms context
formParameters - the map of parameters to get the value from
widgetDialog - the dialog where the widget is used on
param - the widget parameter to generate the widget for
See Also:
I_CmsWidget.setEditorValue(org.opencms.file.CmsObject, java.util.Map, org.opencms.widgets.I_CmsWidgetDialog, org.opencms.widgets.I_CmsWidgetParameter)