|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.zkoss.zk.ui.AbstractComponent org.zkoss.zk.ui.HtmlBasedComponent org.zkoss.zul.impl.XulElement org.zkoss.zul.Treeitem
public class Treeitem
A treeitem.
Event:
Nested Class Summary |
---|
Nested classes/interfaces inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
---|
HtmlBasedComponent.ExtraCtrl |
Nested classes/interfaces inherited from class org.zkoss.zk.ui.AbstractComponent |
---|
AbstractComponent.Children |
Field Summary |
---|
Fields inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
---|
_zclass |
Fields inherited from interface org.zkoss.zk.ui.Component |
---|
APPLICATION_SCOPE, COMPONENT_SCOPE, DESKTOP_SCOPE, PAGE_SCOPE, REQUEST_SCOPE, SESSION_SCOPE, SPACE_SCOPE |
Fields inherited from interface org.zkoss.zk.ui.sys.ComponentCtrl |
---|
CE_BUSY_IGNORE, CE_DUPLICATE_IGNORE, CE_IMPORTANT, CE_NON_DEFERRABLE, CE_REPEAT_IGNORE |
Constructor Summary | |
---|---|
Treeitem()
|
|
Treeitem(java.lang.String label)
|
|
Treeitem(java.lang.String label,
java.lang.Object value)
|
Method Summary | ||
---|---|---|
void |
beforeChildAdded(Component child,
Component refChild)
Default: does nothing. |
|
void |
beforeParentChanged(Component parent)
Default: does nothing. |
|
java.lang.Object |
clone()
Clones the component. |
|
java.lang.String |
getImage()
Returns the image of the Treecell it contains. |
|
int |
getIndex()
return the index of this item |
|
java.lang.String |
getLabel()
Returns the label of the Treecell it contains, or null
if no such cell. |
|
int |
getLevel()
Returns the level this cell is. |
|
Treeitem |
getParentItem()
Returns the parent tree item, or null if this item is already the top level of the tree. |
|
java.lang.String |
getSrc()
Deprecated. As of release 3.5.0, it is redundant since it the same as getImage() . |
|
Tree |
getTree()
Returns the tree owning this item. |
|
Treechildren |
getTreechildren()
Returns the treechildren that this tree item owns, or null if doesn't have any child. |
|
Treerow |
getTreerow()
Returns the treerow that this tree item owns (might null). |
|
|
getValue()
Returns the value. |
|
int |
getVisibleItemCount()
Returns the number of visible descendant Treechildren . |
|
int |
indexOf()
Deprecated. As of release 5.0.9, replaced with getIndex() . |
|
boolean |
insertBefore(Component child,
Component refChild)
Inserts a child before the reference child. |
|
boolean |
isCheckable()
Returns whether it is checkable. |
|
boolean |
isContainer()
Returns whether the element is to act as a container which can have child elements. |
|
boolean |
isDisabled()
Returns whether it is disabled. |
|
boolean |
isEmpty()
Returns whether this element contains no child elements. |
|
boolean |
isLoaded()
Return true whether all children of this tree item, if any, is loaded |
|
boolean |
isOpen()
Returns whether this container is open. |
|
boolean |
isRendered()
Returns true whether this tree item is rendered. |
|
boolean |
isSelected()
Returns whether this item is selected. |
|
void |
onChildAdded(Component child)
Default: does nothing. |
|
void |
onChildRemoved(Component child)
Default: does nothing. |
|
protected void |
redrawChildren(java.io.Writer out)
Redraws children (and then recursively descendants). |
|
protected void |
renderProperties(ContentRenderer renderer)
Renders the content of this component, excluding the enclosing tags and children. |
|
void |
service(AuRequest request,
boolean everError)
Processes an AU request. |
|
void |
setCheckable(boolean checkable)
Sets whether it is checkable. |
|
void |
setDisabled(boolean disabled)
Sets whether it is disabled. |
|
void |
setHflex(java.lang.String flex)
Deprecated. as of release 6.0.0. To control the size of Tree related components, please refer to Tree and Treecol instead. |
|
void |
setImage(java.lang.String image)
Sets the image of the Treecell it contains. |
|
void |
setLabel(java.lang.String label)
Sets the label of the Treecell it contains. |
|
void |
setOpen(boolean open)
Sets whether this container is open. |
|
void |
setParent(Component parent)
Sets the parent component. |
|
void |
setSelected(boolean selected)
Returns whether this item is selected. |
|
void |
setSrc(java.lang.String src)
Deprecated. As of release 3.5.0, it is redundant since it the same as setImage(java.lang.String) . |
|
|
setValue(T value)
Sets the value. |
|
boolean |
setVisible(boolean visible)
Sets whether this component is visible. |
|
void |
setWidth(java.lang.String width)
Deprecated. as of release 6.0.0. To control the size of Tree related components, please refer to Tree and Treecol instead. |
|
void |
unload()
Unload the tree item To load the tree item, with Tree.renderItem(Treeitem) , Tree.renderItem(Treeitem, Object) , or Tree.renderItems(java.util.Set) |
Methods inherited from class org.zkoss.zul.impl.XulElement |
---|
getContext, getCtrlKeys, getPopup, getTooltip, setContext, setContext, setCtrlKeys, setPopup, setPopup, setTooltip, setTooltip |
Methods inherited from class org.zkoss.zk.ui.HtmlBasedComponent |
---|
focus, getAction, getDraggable, getDroppable, getExtraCtrl, getHeight, getHflex, getLeft, getRenderdefer, getSclass, getStyle, getTooltiptext, getTop, getVflex, getWidth, getZclass, getZindex, getZIndex, setAction, setClass, setDraggable, setDroppable, setFocus, setHeight, setHeightDirectly, setHflexDirectly, setLeft, setLeftDirectly, setRenderdefer, setSclass, setStyle, setTooltiptext, setTop, setTopDirectly, setVflex, setWidthDirectly, setZclass, setZindex, setZIndex, setZIndexDirectly |
Methods inherited from class java.lang.Object |
---|
finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public Treeitem()
public Treeitem(java.lang.String label)
public Treeitem(java.lang.String label, java.lang.Object value)
Method Detail |
---|
public boolean isCheckable()
Default: true.
public void setCheckable(boolean checkable)
Note that it is only applied when isCheckmark() of Tree is true.
Default: true.
public void unload()
To load the tree item, with
Tree.renderItem(Treeitem)
, Tree.renderItem(Treeitem, Object)
, or Tree.renderItems(java.util.Set)
public void setDisabled(boolean disabled)
setDisabled
in interface Disable
public boolean isDisabled()
Default: false.
isDisabled
in interface Disable
public boolean isRendered()
isLoaded()
which is used to check whether all children of this tree item are loaded.
Default: false
public boolean isLoaded()
public int getIndex()
public int indexOf()
getIndex()
.
public Treerow getTreerow()
public Treechildren getTreechildren()
public boolean isContainer()
public boolean isEmpty()
public <T> T getValue()
Default: null.
Note: the value is not sent to the browser, so it is OK to be anything.
public <T> void setValue(T value)
value
- the value.
Note: the value is not sent to the browser, so it is OK to be
anything.public boolean isOpen()
Default: true.
public void setOpen(boolean open)
public boolean isSelected()
public void setSelected(boolean selected)
public int getLevel()
public java.lang.String getLabel()
Treecell
it contains, or null
if no such cell.
public void setLabel(java.lang.String label)
Treecell
it contains.
If treerow and treecell are not created, we automatically create it.
Notice that this method will create a treerow and treecell automatically if they don't exist. Thus, you cannot attach a treerow to it again if set an image or a label.
public java.lang.String getSrc()
getImage()
.
public void setSrc(java.lang.String src)
setImage(java.lang.String)
.
public java.lang.String getImage()
Treecell
it contains.
public void setImage(java.lang.String image)
Treecell
it contains.
If treerow and treecell are not created, we automatically create it.
Notice that this method will create a treerow and treecell automatically if they don't exist. Thus, you cannot attach a treerow to it again if set an image or a label.
public Treeitem getParentItem()
public Tree getTree()
public boolean setVisible(boolean visible)
Component
setVisible
in interface Component
setVisible
in class AbstractComponent
public int getVisibleItemCount()
Treechildren
.
Descendants include direct children, grand children and so on.
public void setWidth(java.lang.String width)
Tree
and Treecol
instead.
HtmlBasedComponent
setWidth
in class HtmlBasedComponent
HtmlBasedComponent.setWidthDirectly(java.lang.String)
,
AbstractComponent.disableClientUpdate(boolean)
public void setHflex(java.lang.String flex)
Tree
and Treecol
instead.
HtmlBasedComponent
Number flex indicates how this component's container distributes remaining empty space among its children horizontally. Flexible component grow and shrink to fit their given space. Flexible components with larger flex values will be made larger than components with lower flex values, at the ratio determined by all flexible components. The actual flex value is not relevant unless there are other flexible components within the same container. Once the default sizes of components in a container are calculated, the remaining space in the container is divided among the flexible components, according to their flex ratios.
Specify a flex value of negative value, 0, or "false" has the same effect as leaving the flex attribute out entirely. Specify a flex value of "true" has the same effect as a flex value of 1.
Special flex hint, "min", indicates that the minimum space shall be given to this flexible component to enclose all of its children components. That is, the flexible component grow and shrink to fit its children components.
setHflex
in class HtmlBasedComponent
flex
- horizontal flex hint of this component.HtmlBasedComponent.setVflex(java.lang.String)
,
HtmlBasedComponent.getHflex()
public void beforeParentChanged(Component parent)
AbstractComponent
beforeParentChanged
in interface ComponentCtrl
beforeParentChanged
in class AbstractComponent
parent
- the new parent. If null, it means detachment.ComponentCtrl.beforeParentChanged(org.zkoss.zk.ui.Component)
public void setParent(Component parent)
Component
Note: Component.setParent(org.zkoss.zk.ui.Component)
always calls back Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and/or Component.removeChild(org.zkoss.zk.ui.Component)
,
while Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and Component.removeChild(org.zkoss.zk.ui.Component)
always calls back Component.setParent(org.zkoss.zk.ui.Component)
,
if the parent is changed. Thus, you don't need to override
both Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and Component.setParent(org.zkoss.zk.ui.Component)
, if you want
to customize the behavior.
setParent
in interface Component
setParent
in class AbstractComponent
public void beforeChildAdded(Component child, Component refChild)
AbstractComponent
beforeChildAdded
in interface ComponentCtrl
beforeChildAdded
in class AbstractComponent
child
- the child to be added (never null).refChild
- another child component that the new child
will be inserted before it. If null, the new child will be the
last child.ComponentCtrl.beforeChildAdded(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
public boolean insertBefore(Component child, Component refChild)
Component
You could use Component.setParent(org.zkoss.zk.ui.Component)
or Component.appendChild(org.zkoss.zk.ui.Component)
instead of this method, unless
you want to control where to put the child.
Note: Component.setParent(org.zkoss.zk.ui.Component)
always calls back Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and/or Component.removeChild(org.zkoss.zk.ui.Component)
,
while Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and Component.removeChild(org.zkoss.zk.ui.Component)
always calls back Component.setParent(org.zkoss.zk.ui.Component)
,
if the parent is changed. Thus, you don't need to override
both Component.insertBefore(org.zkoss.zk.ui.Component, org.zkoss.zk.ui.Component)
and Component.setParent(org.zkoss.zk.ui.Component)
, if you want
to customize the behavior.
If you would like to monitor if a component is attached or detached
from a page, you could register a desktop listener implementing
UiLifeCycle
.
insertBefore
in interface Component
insertBefore
in class AbstractComponent
child
- the new child to be inserted.refChild
- the child before which you want the new child
being inserted. If null, the new child is append to the end.
public void onChildAdded(Component child)
AbstractComponent
onChildAdded
in interface ComponentCtrl
onChildAdded
in class AbstractComponent
ComponentCtrl.onChildAdded(org.zkoss.zk.ui.Component)
public void onChildRemoved(Component child)
AbstractComponent
onChildRemoved
in interface ComponentCtrl
onChildRemoved
in class AbstractComponent
ComponentCtrl.onChildRemoved(org.zkoss.zk.ui.Component)
protected void redrawChildren(java.io.Writer out) throws java.io.IOException
AbstractComponent
Default: it invokes AbstractComponent.redraw(java.io.Writer)
for all its children.
If a derived class renders only a subset of its children
(such as paging/cropping), it could override AbstractComponent.redrawChildren(java.io.Writer)
.
redrawChildren
in class AbstractComponent
java.io.IOException
AbstractComponent.redraw(java.io.Writer)
public java.lang.Object clone()
Component
clone
in interface Component
clone
in class XulElement
protected void renderProperties(ContentRenderer renderer) throws java.io.IOException
HtmlBasedComponent
See also ZK Client-side Reference: Property Rendering
renderProperties
in class XulElement
java.io.IOException
public void service(AuRequest request, boolean everError)
Default: in addition to what are handled by HtmlBasedComponent.service(org.zkoss.zk.au.AuRequest, boolean)
,
it also handles onOpen.
service
in interface ComponentCtrl
service
in class HtmlBasedComponent
everError
- whether any error ever occurred before
processing this request.AbstractComponent.setAuService(org.zkoss.zk.au.AuService)
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |