Interface HamletSpec.TEXTAREA
- All Superinterfaces:
HamletSpec.__,HamletSpec._Child,HamletSpec._Content,HamletSpec._RawContent,HamletSpec.Attrs,HamletSpec.CoreAttrs,HamletSpec.EventsAttrs,HamletSpec.I18nAttrs,HamletSpec.PCData
- All Known Implementing Classes:
Hamlet.TEXTAREA
- Enclosing class:
- HamletSpec
public static interface HamletSpec.TEXTAREA
extends HamletSpec.Attrs, HamletSpec.PCData, HamletSpec._Child
-
Method Summary
Modifier and TypeMethodDescription$accesskey(String cdata) accessibility key character$cols(int cols) visible columnsunavailable in this contextvariable name for the textthe element lost the focusthe element value was changedthe element got the focussome text was selectedtext is readonly$rows(int rows) visible rows$tabindex(int index) position in tabbing orderMethods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec._Child
__Methods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec._Content
__Methods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec._RawContent
_rMethods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec.CoreAttrs
$class, $id, $style, $titleMethods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec.EventsAttrs
$onclick, $ondblclick, $onkeydown, $onkeypress, $onkeyup, $onmousedown, $onmousemove, $onmouseout, $onmouseover, $onmouseupMethods inherited from interface org.apache.hadoop.yarn.webapp.hamlet2.HamletSpec.I18nAttrs
$dir, $lang
-
Method Details
-
$name
variable name for the text- Parameters:
cdata- the content of the element.- Returns:
- the current element builder
-
$rows
visible rows- Parameters:
rows- number of rows.- Returns:
- the current element builder
-
$cols
visible columns- Parameters:
cols- number of cols.- Returns:
- the current element builder
-
$disabled
HamletSpec.TEXTAREA $disabled()unavailable in this context- Returns:
- the current element builder
-
$readonly
HamletSpec.TEXTAREA $readonly()text is readonly- Returns:
- the current element builder
-
$tabindex
position in tabbing order- Parameters:
index- the index- Returns:
- the current element builder
-
$accesskey
accessibility key character- Parameters:
cdata- the content of the element.- Returns:
- the current element builder
-
$onfocus
the element got the focus- Parameters:
script- to invoke.- Returns:
- the current element builder
-
$onblur
the element lost the focus- Parameters:
script- to invoke.- Returns:
- the current element builder
-
$onselect
some text was selected- Parameters:
script- to invoke.- Returns:
- the current element builder
-
$onchange
the element value was changed- Parameters:
script- to invoke.- Returns:
- the current element builder
-