Interface InputWidget<T extends WidgetModel,U extends WidgetController>
-
- All Superinterfaces:
java.lang.Cloneable
,org.zkoss.zk.ui.Component
,FocusableComponent
,org.zkoss.zk.ui.api.HtmlBasedComponent
,org.zkoss.zk.ui.ext.Scope
,java.io.Serializable
,Widget<T,U>
,WidgetModelListener
- All Known Implementing Classes:
DefaultInputWidget
public interface InputWidget<T extends WidgetModel,U extends WidgetController> extends Widget<T,U>
An input widget is a widget with an input component.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setInputComponent(org.zkoss.zul.impl.api.InputElement input)
Sets this widget's input component toinput
.-
Methods inherited from interface org.zkoss.zk.ui.Component
addEventListener, addEventListener, addForward, addForward, addForward, addForward, appendChild, applyProperties, clone, detach, getAttribute, getAttribute, getAttributeOrFellow, getAttributes, getAttributes, getAuService, getAutag, getChildren, getClientAttribute, getClientDataAttribute, getDefinition, getDesktop, getEventListeners, getFellow, getFellow, getFellowIfAny, getFellowIfAny, getFellows, getFirstChild, getId, getLastChild, getListenerIterator, getMold, getNextSibling, getPage, getParent, getPreviousSibling, getRoot, getShadowVariable, getShadowVariable, getSpaceOwner, getStubonly, getTemplate, getTemplateNames, getUuid, getWidgetAttribute, getWidgetAttributeNames, getWidgetClass, getWidgetListener, getWidgetListenerNames, getWidgetOverride, getWidgetOverrideNames, hasAttribute, hasAttribute, hasAttributeOrFellow, hasFellow, hasFellow, insertBefore, invalidate, isInvalidated, isListenerAvailable, isVisible, query, queryAll, removeAttribute, removeAttribute, removeChild, removeEventListener, removeForward, removeForward, setAttribute, setAttribute, setAuService, setAutag, setClientAttribute, setClientDataAttribute, setId, setMold, setPage, setPageBefore, setParent, setStubonly, setStubonly, setTemplate, setVisible, setWidgetAttribute, setWidgetClass, setWidgetListener, setWidgetOverride
-
Methods inherited from interface de.hybris.platform.cockpit.components.FocusableComponent
handleFocus
-
Methods inherited from interface org.zkoss.zk.ui.api.HtmlBasedComponent
focus, getHeight, getLeft, getSclass, getStyle, getTooltiptext, getTop, getWidth, getZclass, getZindex, getZIndex, setDraggable, setDroppable, setFocus, setHeight, setLeft, setSclass, setStyle, setTooltiptext, setTop, setWidth, setZclass, setZindex, setZIndex
-
Methods inherited from interface org.zkoss.zk.ui.ext.Scope
addScopeListener, getAttribute, hasAttribute, removeAttribute, removeScopeListener, setAttribute
-
Methods inherited from interface de.hybris.platform.cockpit.widgets.Widget
cleanup, getCaption, getContent, getControllerCtx, getWidgetCode, getWidgetContainer, getWidgetController, getWidgetModel, getWidgetRenderer, getWidgetTitle, initialize, isFocusable, isInitialized, isLazyLoadingEnabled, setControllerCtx, setFocusable, setLazyLoadingEnabled, setWidgetCode, setWidgetContainer, setWidgetController, setWidgetModel, setWidgetRenderer, setWidgetTitle
-
Methods inherited from interface de.hybris.platform.cockpit.widgets.events.WidgetModelListener
onModelEvent
-
-
-
-
Method Detail
-
setInputComponent
void setInputComponent(org.zkoss.zul.impl.api.InputElement input)
Sets this widget's input component toinput
. This method is typically called by the usedWidgetRenderer
in order to allow the widget to access its input component directly (e.g. for focus handling and updating purposes).- Parameters:
input
- input component
-
-