|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.kuali.rice.krad.datadictionary.DictionaryBeanBase
org.kuali.rice.krad.datadictionary.uif.UifDictionaryBeanBase
org.kuali.rice.krad.uif.component.ComponentBase
org.kuali.rice.krad.uif.element.ContentElementBase
org.kuali.rice.krad.uif.element.DropdownMenu
public class DropdownMenu
Renders a dropdown menu (context menu) of actions
The dropdown menu component can be used to build context menus or full application menus. Essentially the
component is configured by first setting the text that will appear as a link (optionally with a caret). When the
user clicks the link, the dropdown of actions (getMenuActions()
will be presented.
Field Summary |
---|
Fields inherited from class org.kuali.rice.krad.uif.component.ComponentBase |
---|
templateOptions |
Fields inherited from class org.kuali.rice.krad.datadictionary.DictionaryBeanBase |
---|
componentCode, namespaceCode |
Fields inherited from interface org.kuali.rice.krad.uif.component.Ordered |
---|
INITIAL_ORDER_VALUE |
Fields inherited from interface org.springframework.core.Ordered |
---|
HIGHEST_PRECEDENCE, LOWEST_PRECEDENCE |
Constructor Summary | |
---|---|
DropdownMenu()
|
Method Summary | ||
---|---|---|
protected
|
copyProperties(T component)
Copies properties for copy() |
|
List<Component> |
getComponentsForLifecycle()
List of components that are contained within the component and should be sent through the lifecycle |
|
Message |
getDropdownToggle()
Message component that is associated with the dropdown toggle text, can be used to adjust styling
and so forth |
|
String |
getDropdownToggleText()
Text to display as the dropdown toggle link |
|
List<MenuAction> |
getMenuActions()
List of MenuAction instances that should be rendered for the dropdown |
|
boolean |
isRenderToggleButton()
Indicates whether a caret button should be rendered to the right of the toggle text (if present) |
|
boolean |
isRenderToggleCaret()
Indicates whether a caret icon should be rendered to the right of the toggle text (if present) |
|
void |
performApplyModel(Object model,
Component parent)
The following updates are done here: Evaluate the progressive render condition (if set) and combine with the current render status to set the render status |
|
void |
setDropdownToggle(Message dropdownToggle)
|
|
void |
setDropdownToggleText(String dropdownToggleText)
|
|
void |
setMenuActions(List<MenuAction> menuActions)
|
|
void |
setRenderToggleButton(boolean renderToggleButton)
|
|
void |
setRenderToggleCaret(boolean renderToggleCaret)
|
Methods inherited from class org.kuali.rice.krad.uif.element.ContentElementBase |
---|
getComponentTypeName |
Methods inherited from class org.kuali.rice.krad.datadictionary.uif.UifDictionaryBeanBase |
---|
getExpressionGraph, getPropertyExpression, getPropertyExpressions, getRefreshExpressionGraph, setExpressionGraph, setPropertyExpressions, setRefreshExpressionGraph |
Methods inherited from class org.kuali.rice.krad.datadictionary.DictionaryBeanBase |
---|
dataDictionaryPostProcessing, getComponentCode, getNamespaceCode, setComponentCode, setNamespaceCode |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.kuali.rice.krad.datadictionary.uif.UifDictionaryBean |
---|
getExpressionGraph, getPropertyExpression, getPropertyExpressions, getRefreshExpressionGraph, setExpressionGraph, setPropertyExpressions, setRefreshExpressionGraph |
Methods inherited from interface org.kuali.rice.krad.datadictionary.DictionaryBean |
---|
dataDictionaryPostProcessing, getComponentCode, getNamespaceCode |
Methods inherited from interface org.kuali.rice.krad.uif.util.LifecycleElement |
---|
checkMutable, copy, getId, initializePendingTasks, isMutable, performFinalize, performInitialization, setId |
Constructor Detail |
---|
public DropdownMenu()
Method Detail |
---|
public void performApplyModel(Object model, Component parent)
ComponentBase
performApplyModel
in interface LifecycleElement
performApplyModel
in class ComponentBase
model
- - Top level object containing the data (could be the form or a
top level business object, dto)org.kuali.rice.krad.uif.component.Component#performApplyModel(org.kuali.rice.krad.uif.view.View, Object,
org.kuali.rice.krad.uif.component.Component)
public List<Component> getComponentsForLifecycle()
Component
Used by ViewHelperService
for the various lifecycle callbacks
getComponentsForLifecycle
in interface Component
getComponentsForLifecycle
in class ComponentBase
ComponentBase.getComponentsForLifecycle()
public String getDropdownToggleText()
This text will appear as a link for the user to click on, which then will bring up the dropdown menu. This
property is a shortcut for #getDropdownToggle().setMessageText()
. This text is not required, in which
case only the caret will render
public void setDropdownToggleText(String dropdownToggleText)
getDropdownToggleText()
public Message getDropdownToggle()
Message
component that is associated with the dropdown toggle text, can be used to adjust styling
and so forth
public void setDropdownToggle(Message dropdownToggle)
getDropdownToggle()
public boolean isRenderToggleCaret()
public void setRenderToggleCaret(boolean renderToggleCaret)
isRenderToggleCaret()
public boolean isRenderToggleButton()
public void setRenderToggleButton(boolean renderToggleButton)
isRenderToggleButton()
public List<MenuAction> getMenuActions()
MenuAction
instances that should be rendered for the dropdown
Actions for the menu are configured through this list. The order of the actions within the list is the order they will appear in the dropdown
public void setMenuActions(List<MenuAction> menuActions)
getMenuActions()
protected <T> void copyProperties(T component)
DictionaryBeanBase
copyProperties
in class ComponentBase
component
- base beanComponentBase.copy()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |