Package com.microstrategy.web.app.beans
Interface EnumObjectSelectionBeanEvents
-
public interface EnumObjectSelectionBeanEvents
This interface contains those events for aObjectSelectionBean
.- Since:
- MicroStrategy Web 9.0.0
-
-
Field Summary
Fields Modifier and Type Field Description static int
WebEventAddSelections
This event will add selections to the current list.static int
WebEventArgumentAcceptSelections
This argument tells whether the selections should be "accepted" - i.e.static int
WebEventArgumentSelectionList
This argument represents the selection list.static int
WebEventCancelSelector
This event will cancel the selector, removing any changes made and closing the bean.static int
WebEventRemoveSelections
This event will remove selections from the current list.static int
WebEventUpdateSelections
This event is used to update and/or accept selections.
-
-
-
Field Detail
-
WebEventUpdateSelections
static final int WebEventUpdateSelections
This event is used to update and/or accept selections. If the argument WebEventArgumentSelectionList is provided, then the given list will replace the currently defined list. If the argument WebEventArgumentAcceptSelections is provided as "1", then the list will be "accepted", and propagated back to the original source.- See Also:
- Constant Field Values
-
WebEventCancelSelector
static final int WebEventCancelSelector
This event will cancel the selector, removing any changes made and closing the bean.- See Also:
- Constant Field Values
-
WebEventAddSelections
static final int WebEventAddSelections
This event will add selections to the current list. Takes one argument - WebEventArugmentSelectionList, which contains the items to add.- See Also:
- Constant Field Values
-
WebEventRemoveSelections
static final int WebEventRemoveSelections
This event will remove selections from the current list. Takes one argument - WebEventArugmentSelectionList, which contains the items to remove.- See Also:
- Constant Field Values
-
WebEventArgumentSelectionList
static final int WebEventArgumentSelectionList
This argument represents the selection list. The value should be a string formatted as: Object ID +EnumPromptsBeanEvents.ITEM_SEPARATOR
+ Object type +EnumPromptsBeanEvents.ITEM_SEPARATOR
+ object name. If there is more than one item in the list, then each item should be separated byEnumPromptsBeanEvents.UNIT_SEPARATOR
.- See Also:
- Constant Field Values
-
WebEventArgumentAcceptSelections
static final int WebEventArgumentAcceptSelections
This argument tells whether the selections should be "accepted" - i.e. whether they should be propagated from the list back to the source object. If this is "1", then the selections should be accepted, otherwise, they will not be.- See Also:
- Constant Field Values
-
-