Package org.zkoss.stateless.sul
Interface IListgroup
-
- All Superinterfaces:
IChildable<IListgroup,IListcell<IAnyGroup>>,IComponent<IListgroup>,IHtmlBasedComponent<IListgroup>,IListboxComposite<IListgroup>,IListgroupChild<IListgroup>,IListitemBase<IListgroup>,IMeshComposite<IListgroup>,IXulElement<IListgroup>
public interface IListgroup extends IListgroupChild<IListgroup>
ImmutableListgroupcomponentAdds the ability for single level grouping to the Listbox.
Support @Action
Name Action Type onOpen ActionData: OpenData
Denotes user has opened or closed a component. It is useful to implement load-on-demand by listening to the onOpen action, and creating components when the first time the component is opened.- Author:
- katherine
- See Also:
Listgroup
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static classIListgroup.BuilderBuilds instances of typeIListgroup.static classIListgroup.UpdaterBuilds an updater of typeIListgroupforUiAgent.smartUpdate(Locator, SmartUpdater).
-
Field Summary
Fields Modifier and Type Field Description static IListgroupDEFAULTConstant for default attributes of this immutable component.
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default java.lang.StringgetLabel()Returns the label of the firstIListcellit contains.default java.lang.StringgetWidgetClass()Returns the client widget class.default booleanisOpen()Returns whether this container is open.static IListgroupof(java.lang.Iterable<? extends IListcell<IAnyGroup>> children)Returns the instance with the givenIListcellchildren.static IListgroupof(java.lang.String label)Returns the instance with the given label.static IListgroupof(IListcell<IAnyGroup>... children)Returns the instance with the givenIListcellchildren.static IListgroupofId(java.lang.String id)Returns the instance with the given id.IListgroupwithLabel(java.lang.String label)Returns a copy ofthisimmutable component with the specifiedlabel.IListgroupwithOpen(boolean open)Returns a copy ofthisimmutable component with the specifiedopen.-
Methods inherited from interface org.zkoss.stateless.sul.IChildable
getChildren, withChildren, withChildren
-
Methods inherited from interface org.zkoss.stateless.sul.IComponent
getAction, getActions, getClientAttributes, getId, getMold, getWidgetListeners, getWidgetOverrides, isVisible, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withAction, withActions, withActions, withClientAttribute, withClientAttributes, withId, withMold, withVisible, withWidgetClass, withWidgetListener, withWidgetListeners, withWidgetOverride, withWidgetOverrides
-
Methods inherited from interface org.zkoss.stateless.sul.IHtmlBasedComponent
getClientAction, getDraggable, getDroppable, getHeight, getHflex, getLeft, getRenderdefer, getSclass, getStyle, getTabindex, getTooltiptext, getTop, getVflex, getWidth, getZclass, getZIndex, isFocus, withClientAction, withDraggable, withDroppable, withFocus, withHeight, withHflex, withLeft, withRenderdefer, withSclass, withStyle, withTabindex, withTabindex, withTooltiptext, withTop, withVflex, withWidth, withZclass, withZIndex
-
Methods inherited from interface org.zkoss.stateless.sul.IListitemBase
checkHflex, checkWidth, getImage, getIndex, isDisabled, isLoaded, isSelectable, isSelected, withDisabled, withImage, withIndex, withLoaded, withSelectable, withSelected
-
Methods inherited from interface org.zkoss.stateless.sul.IXulElement
getContext, getCtrlKeys, getPopup, getTooltip, withContext, withCtrlKeys, withPopup, withTooltip
-
-
-
-
Field Detail
-
DEFAULT
static final IListgroup DEFAULT
Constant for default attributes of this immutable component.
-
-
Method Detail
-
getWidgetClass
default java.lang.String getWidgetClass()
Returns the client widget class.Default:
"zkex.sel.Listgroup"- Specified by:
getWidgetClassin interfaceIComponent<IListgroup>
-
getLabel
@Nullable default java.lang.String getLabel()
Returns the label of the firstIListcellit contains.Default:
null
-
withLabel
IListgroup withLabel(@Nullable java.lang.String label)
Returns a copy ofthisimmutable component with the specifiedlabel.Sets the label of the first
IListcellit contains.If it is not created, we automatically create it.
- Parameters:
label- The label of the firstIListcellit contains.Default:
null.- Returns:
- A modified copy of the
thisobject
-
isOpen
default boolean isOpen()
Returns whether this container is open.Default:
true.
-
withOpen
IListgroup withOpen(boolean open)
Returns a copy ofthisimmutable component with the specifiedopen.Sets whether this container is open.
- Parameters:
open-falseto hide all sublevel items.Default:
true.- Returns:
- A modified copy of the
thisobject
-
of
static IListgroup of(java.lang.String label)
Returns the instance with the given label.- Parameters:
label- The label that the first cell holds.
-
of
static IListgroup of(java.lang.Iterable<? extends IListcell<IAnyGroup>> children)
Returns the instance with the givenIListcellchildren.- Parameters:
children- The children for eachIListcell
-
of
static IListgroup of(IListcell<IAnyGroup>... children)
Returns the instance with the givenIListcellchildren.- Parameters:
children- The children for eachIListcell
-
ofId
static IListgroup ofId(java.lang.String id)
Returns the instance with the given id.- Parameters:
id- The id to identify this component
-
-