public class Button extends LabelImageWidget
Default Widget.getZclass()
: z-button.
$weave, auDelay, autag, bindLevel, className, desktop, effects_, firstChild, id, insertingBefore_, inServer, lastChild, nChildren, nextSibling, parent, previousSibling, uuid, widgetName
Modifier and Type | Method and Description |
---|---|
String |
getAutodisable()
Returns a list of component IDs that shall be disabled when the user
clicks this button.
|
String |
getDir()
Returns the direction.
|
String |
getHref()
Returns the href that the browser shall jump to, if an user clicks
this button.
|
String |
getOrient()
Returns the orient.
|
String |
getTarget()
Returns the target frame or window.
|
String |
getType()
Returns the button type.
|
String |
getUpload()
Returns non-null if this button is used for file upload, or null otherwise.
|
boolean |
isDisabled()
Returns whether it is disabled.
|
void |
setAutodisable(String autodisable)
Sets whether to disable the button after the user clicks it.
|
void |
setDir(String dir)
Sets the direction.
|
void |
setDisabled(boolean disabled)
Sets whether it is disabled.
|
void |
setHref(String href)
Sets the href.
|
void |
setOrient(String orient)
Sets the orient.
|
void |
setTarget(String target)
Sets the target frame or window.
|
void |
setType(String type)
Sets the button type.
|
void |
setUpload(String upload)
Sets the JavaScript class at the client to handle the upload if this
button is used for file upload.
|
domContent_, domIcon_, domImage_, domLabel_, getHoverImage, getIconSclass, getImage, getImageNode, getLabel, setHoverImage, setIconSclass, setImage, setLabel, updateDomContent_
afterKeyDown_, beforeCtrlKeys_, getContext, getCtrlKeys, getOpenTooltip, getPopup, getTooltip, setContext, setContext, setCtrlKeys, setPopup, setPopup, setTooltip, setTooltip
$, $f, $f, $f, $init, $n, $n, $o, $s, $service, afterAnima_, afterParentChanged_, appendChild, appendChild, beforeParentChanged_, beforeSendAU_, bind_, bind, bindChildren_, bindDoubleTap_, bindMissingAncestors, bindSwipe_, bindTapHold_, canActivate, cleanDrag_, clear, clearCache, cloneDrag_, deferRedraw_, deferRedrawHTML_, detach, doBlur_, doClick_, doDoubleClick_, doFocus_, doKeyDown_, doKeyPress_, doKeyUp_, domAttrs_, domClass_, domListen_, doMouseDown_, doMouseMove_, doMouseOut_, doMouseOver_, doMouseUp_, domStyle_, domTextStyleAttr_, domTooltiptext_, domUnlisten_, doPaste_, doResizeScroll_, doRightClick_, doSelect_, doSwipe_, doTooltipOut_, doTooltipOver_, dropEffect_, extraBind_, fire, fireX, focus_, focus, forcerender, fromPageCoord, get, getAction, getCaveNode, getChildAt, getChildIndex, getClass, getCssflex, getDraggable, getDragMessage_, getDragNode, getDragOptions_, getDrop_, getDroppable, getElementsById, getElementsByName, getFirstNode_, getFloatZIndex_, getHeight, getHflex, getId, getLeft, getMold, getOldWidget_, getPage, getRenderdefer, getSclass, getScrollLeft, getScrollTop, getStyle, getTabindex, getTextNode, getTooltiptext, getTop, getTopWidget, getVflex, getWidth, getZclass, getZIndex, hide, ignoreDescendantFloatUp_, ignoreDrag_, initDrag_, insertBefore, insertChildHTML_, isAutoId, isBinding, isFloating_, isListen, isRealElement, isRealVisible, isRealVisible, isVisible, isVisible, isWatchable_, listen, listenOnFitSize_, mimicMouseDown_, newInstance, nextUuid, onAfterSize, onChildAdded_, onChildRemoved_, onChildRenderDefer_, onChildReplaced_, onChildVisible_, onDrop_, redraw, redrawHTML_, register, removeChild, removeChild, removeChildHTML_, removeHTML_, replaceCavedChildren_, replaceChildHTML_, replaceHTML, replaceWidget, rerender, rerender, rerenderLater_, rerenderNow_, scrollIntoView, sendAU_, set, set, setAction, setChildren, setCssflex, setDomVisible_, setDraggable, setDroppable, setFloating_, setFloatZIndex_, setHeight, setHflex, setId, setLeft, setListener, setListener, setListeners, setMold, setRenderdefer, setSclass, setScrollLeft, setScrollTop, setStyle, setTabindex, setTooltiptext, setTop, setTopmost, setVflex, setVisible, setWidth, setZclass, setZIndex, shallChildROD_, shallFireSizedLaterWhenAddChd_, shallIgnoreClick_, show, smartUpdate, unbind_, unbind, unbindChildren_, unbindDoubleTap_, unbindSwipe_, unbindTapHold_, uncloneDrag_, unlisten, unlistenOnFitSize_, updateDomClass_, updateDomStyle_, uuid, zsync
$init, $instanceof, $super, $super, $supers, $supers, afterInit, isAssignableFrom, isInstance, proxy
public void setHref(String href)
href
- public String getHref()
Default: null. If null, the button has no function unless you specify the onClick event listener.
If it is not null, the onClick event won't be sent.
public void setTarget(String target)
target
- the name of the frame or window to hyperlink.public String getTarget()
Note: it is useful only if href (setHref(_global_.String)
) is specified
(i.e., use the onClick listener).
Default: null.
public void setDir(String dir)
dir
- either "normal" or "reverse".public String getDir()
Default: "normal".
public void setOrient(String orient)
orient
- either "horizontal" or "vertical".public String getOrient()
Default: "horizontal".
public void setType(String type)
type
- either "button", "submit" or "reset".public String getType()
Default: "button".
public void setDisabled(boolean disabled)
disabled
- public boolean isDisabled()
Default: false.
public void setAutodisable(String autodisable)
autodisable
- public String getAutodisable()
To represent the button itself, the developer can specify self
.
For example,
button.setId('ok');
wgt.setAutodisable('self,cancel');
is the same as
button.setId('ok');
wgt.setAutodisable('ok,cancel');
that will disable
both the ok and cancel buttons when an user clicks it.
The button being disabled will be enabled automatically once the client receives a response from the server. In other words, the server doesn't notice if a button is disabled with this method.
However, if you prefer to enable them later manually, you can prefix with '+'. For example,
button.setId('ok');
wgt.setAutodisable('+self,+cancel');
Then, you have to enable them manually such as
if (something_happened){
ok.setDisabled(false);
cancel.setDisabled(false);
Default: null.
public void setUpload(String upload)
Default: null.
For example, the following example declares a button for file upload:
button.setLabel('Upload');
button.setUpload('true');
If you want to customize the handling of the file upload at
the client, you can specify a JavaScript class when calling
this method:
button.setUpload('foo.Upload');
Another options for the upload can be specified as follows:
button.setUpload('true,maxsize=-1,native');
upload
- a JavaScript class to handle the file upload
at the client, or "true" if the default class is used,
or null or "false" to disable the file download (and then
this button behaves like a normal button).public String getUpload()
setUpload(_global_.String)
for more details.Copyright © 2005-2023 Potix Corporation. All Rights Reserved.