Package | Description |
---|---|
bayou.html |
For building html trees.
|
Modifier and Type | Method and Description |
---|---|
default Html5.SELECT |
Html5._select()
Build element
<select> . |
default Html5.SELECT |
Html5._select(Object... children)
Build element
<select> with children. |
default Html5.SELECT |
Html5._select(Runnable code)
Build element
<select> ; with it as the context parent, run `code`. |
Html5.SELECT |
Html5.SELECT.autofocus(boolean value)
Set boolean attribute
autofocus . |
Html5.SELECT |
Html5.SELECT.disabled(boolean value)
Set boolean attribute
disabled . |
Html5.SELECT |
Html5.SELECT.form(CharSequence value)
Set attribute
form="{value}" . |
Html5.SELECT |
Html5.SELECT.multiple(boolean value)
Set boolean attribute
multiple . |
Html5.SELECT |
Html5.SELECT.name(CharSequence value)
Set attribute
name="{value}" . |
Html5.SELECT |
Html5.SELECT.required(boolean value)
Set boolean attribute
required . |
Html5.SELECT |
Html5.SELECT.size(int value)
Set attribute
size="{value}" . |
Html5.SELECT |
Html5.SELECT.tabindex(int value)
Set attribute
tabindex="{value}" . |