Method Summary |
|
public String | getInnerAttrs() Appends interior attributes for generating the HTML checkbox tag
(the name, disabled and other attribute). |
public String | getLabelAttrs() Returns the attributes used by the embedded HTML LABEL tag. |
public String | getName() Returns the name of this component.
Default: null.
Don't use this method if your application is purely based
on ZK's event-driven model.
The name is used only to work with "legacy" Web application that
handles user's request by servlets.
It works only with HTTP/HTML-based browsers. |
public String | getOuterAttrs() Appends exterior attributes for generating the HTML span tag
(the event relevant attribute). |
public int | getTabindex() Returns the tab order of this component. |
public boolean | isChecked() Returns whether it is checked. |
public boolean | isDisabled() Returns whether it is disabled. |
public boolean | isReadonly() Returns whether it is readonly. |
protected Object | newExtraCtrl() |
public void | setChecked(boolean checked) Sets whether it is checked. |
public void | setDisabled(boolean disabled) Sets whether it is disabled. |
public void | setName(String name) Sets the name of this component.
Don't use this method if your application is purely based
on ZK's event-driven model.
The name is used only to work with "legacy" Web application that
handles user's request by servlets.
It works only with HTTP/HTML-based browsers. |
public void | setReadonly(boolean readonly) Sets whether it is readonly. |
public void | setTabindex(int tabindex) Sets the tab order of this component. |