[−][src]Struct moxie_dom::elements::forms::SelectBuilder
The HTML <select>
element represents a control that provides a menu of options.
A type for initializing the element's attributes before calling build
.
Implementations
impl SelectBuilder
[src]
impl SelectBuilder
[src]
pub fn autocomplete(self, to_set: impl ToString) -> Self
[src]
A DOMString providing a hint for a user agent's autocomplete feature.
pub fn autofocus(self, to_set: bool) -> Self
[src]
Lets you specify that a form control should have input focus when the page loads. Only one form element in a document can have the autofocus attribute.
pub fn disabled(self, to_set: bool) -> Self
[src]
Indicates that the user cannot interact with the control. If this attribute is not
specified, the control inherits its setting from the containing element, for example
<fieldset>
; if there is no containing element with the disabled attribute set, then
the control is enabled.
pub fn form(self, to_set: impl ToString) -> Self
[src]
The <form>
element to associate the <select>
with (its form owner). The value of
this attribute must be the id of a <form>
in the same document. (If this attribute is
not set, the <select>
is associated with its ancestor <form>
element, if any.)
This attribute lets you associate <select>
elements to <form>
s anywhere in the
document, not just inside a <form>
. It can also override an ancestor <form>
element.
pub fn multiple(self, to_set: bool) -> Self
[src]
Indicates that multiple options can be selected in the list. If it is not specified, then only one option can be selected at a time. When multiple is specified, most browsers will show a scrolling list box instead of a single line dropdown.
pub fn name(self, to_set: impl ToString) -> Self
[src]
This attribute is used to specify the name of the control.
pub fn required(self, to_set: bool) -> Self
[src]
Indicates that an option with a non-empty string value must be selected.
pub fn size(self, to_set: impl ToString) -> Self
[src]
If the control is presented as a scrolling list box (e.g. when multiple is specified), this attribute represents the number of rows in the list that should be visible at one time. Browsers are not required to present a select element as a scrolled list box. The default value is 0.
Trait Implementations
impl ElementBuilder for SelectBuilder
[src]
pub fn attribute(self, name: &'static str, value: impl AsRef<str>) -> Self
[src]
pub fn class(self, to_set: impl ToString) -> Self
[src]
pub fn id(self, to_set: impl ToString) -> Self
[src]
pub fn style(self, to_set: impl ToString) -> Self
[src]
impl<E> EventTarget<E> for SelectBuilder where
E: GlobalEvent,
[src]
E: GlobalEvent,
impl GlobalEventHandler for SelectBuilder
[src]
pub fn onabort(self, callback: impl FnMut(Abort) + 'static) -> Self
[src]
pub fn onblur(self, callback: impl FnMut(Blur) + 'static) -> Self
[src]
pub fn oncancel(self, callback: impl FnMut(Cancel) + 'static) -> Self
[src]
pub fn oncanplay(self, callback: impl FnMut(CanPlay) + 'static) -> Self
[src]
pub fn oncanplaythrough(
self,
callback: impl FnMut(CanPlayThrough) + 'static
) -> Self
[src]
self,
callback: impl FnMut(CanPlayThrough) + 'static
) -> Self
pub fn onchange(self, callback: impl FnMut(Change) + 'static) -> Self
[src]
pub fn onclick(self, callback: impl FnMut(Click) + 'static) -> Self
[src]
pub fn onclose(self, callback: impl FnMut(CloseWebsocket) + 'static) -> Self
[src]
pub fn oncontextmenu(self, callback: impl FnMut(ContextMenu) + 'static) -> Self
[src]
pub fn oncuechange(self, callback: impl FnMut(CueChange) + 'static) -> Self
[src]
pub fn ondblclick(self, callback: impl FnMut(DoubleClick) + 'static) -> Self
[src]
pub fn ondrag(self, callback: impl FnMut(Drag) + 'static) -> Self
[src]
pub fn ondragend(self, callback: impl FnMut(DragEnd) + 'static) -> Self
[src]
pub fn ondragenter(self, callback: impl FnMut(DragEnter) + 'static) -> Self
[src]
pub fn ondragexit(self, callback: impl FnMut(DragExit) + 'static) -> Self
[src]
pub fn ondragleave(self, callback: impl FnMut(DragLeave) + 'static) -> Self
[src]
pub fn ondragover(self, callback: impl FnMut(DragOver) + 'static) -> Self
[src]
pub fn ondragstart(self, callback: impl FnMut(DragStart) + 'static) -> Self
[src]
pub fn ondrop(self, callback: impl FnMut(Dropped) + 'static) -> Self
[src]
pub fn ondurationchange(
self,
callback: impl FnMut(DurationChange) + 'static
) -> Self
[src]
self,
callback: impl FnMut(DurationChange) + 'static
) -> Self
pub fn onemptied(self, callback: impl FnMut(Emptied) + 'static) -> Self
[src]
pub fn onended(self, callback: impl FnMut(PlaybackEnded) + 'static) -> Self
[src]
pub fn onerror(self, callback: impl FnMut(ErrorEvent) + 'static) -> Self
[src]
pub fn onfocus(self, callback: impl FnMut(Focus) + 'static) -> Self
[src]
pub fn ongotpointercapture(
self,
callback: impl FnMut(GotPointerCapture) + 'static
) -> Self
[src]
self,
callback: impl FnMut(GotPointerCapture) + 'static
) -> Self
pub fn oninput(self, callback: impl FnMut(Input) + 'static) -> Self
[src]
pub fn oninvalid(self, callback: impl FnMut(Invalid) + 'static) -> Self
[src]
pub fn onkeydown(self, callback: impl FnMut(KeyDown) + 'static) -> Self
[src]
pub fn onkeypress(self, callback: impl FnMut(KeyPress) + 'static) -> Self
[src]
pub fn onkeyup(self, callback: impl FnMut(KeyUp) + 'static) -> Self
[src]
pub fn onload(self, callback: impl FnMut(ResourceLoad) + 'static) -> Self
[src]
pub fn onloadeddata(self, callback: impl FnMut(DataLoaded) + 'static) -> Self
[src]
pub fn onloadedmetadata(
self,
callback: impl FnMut(MetadataLoaded) + 'static
) -> Self
[src]
self,
callback: impl FnMut(MetadataLoaded) + 'static
) -> Self
pub fn onloadend(self, callback: impl FnMut(LoadEnd) + 'static) -> Self
[src]
pub fn onloadstart(self, callback: impl FnMut(LoadStart) + 'static) -> Self
[src]
pub fn onlostpointercapture(
self,
callback: impl FnMut(LostPointerCapture) + 'static
) -> Self
[src]
self,
callback: impl FnMut(LostPointerCapture) + 'static
) -> Self
pub fn onmouseenter(self, callback: impl FnMut(MouseEnter) + 'static) -> Self
[src]
pub fn onmouseleave(self, callback: impl FnMut(MouseLeave) + 'static) -> Self
[src]
pub fn onmousemove(self, callback: impl FnMut(MouseMove) + 'static) -> Self
[src]
pub fn onmouseout(self, callback: impl FnMut(MouseOut) + 'static) -> Self
[src]
pub fn onmouseover(self, callback: impl FnMut(MouseOver) + 'static) -> Self
[src]
pub fn onmouseup(self, callback: impl FnMut(MouseUp) + 'static) -> Self
[src]
pub fn onpause(self, callback: impl FnMut(Pause) + 'static) -> Self
[src]
pub fn onplay(self, callback: impl FnMut(Play) + 'static) -> Self
[src]
pub fn onplaying(self, callback: impl FnMut(Playing) + 'static) -> Self
[src]
pub fn onpointercancel(
self,
callback: impl FnMut(PointerCancel) + 'static
) -> Self
[src]
self,
callback: impl FnMut(PointerCancel) + 'static
) -> Self
pub fn onpointerdown(self, callback: impl FnMut(PointerDown) + 'static) -> Self
[src]
pub fn onpointerenter(
self,
callback: impl FnMut(PointerEnter) + 'static
) -> Self
[src]
self,
callback: impl FnMut(PointerEnter) + 'static
) -> Self
pub fn onpointerleave(
self,
callback: impl FnMut(PointerLeave) + 'static
) -> Self
[src]
self,
callback: impl FnMut(PointerLeave) + 'static
) -> Self
pub fn onpointermove(self, callback: impl FnMut(PointerMove) + 'static) -> Self
[src]
pub fn onpointerout(self, callback: impl FnMut(PointerOut) + 'static) -> Self
[src]
pub fn onpointerover(self, callback: impl FnMut(PointerOver) + 'static) -> Self
[src]
pub fn onpointerup(self, callback: impl FnMut(PointerUp) + 'static) -> Self
[src]
pub fn onprogress(self, callback: impl FnMut(Progress) + 'static) -> Self
[src]
pub fn onratechange(
self,
callback: impl FnMut(PlaybackRateChange) + 'static
) -> Self
[src]
self,
callback: impl FnMut(PlaybackRateChange) + 'static
) -> Self
pub fn onreset(self, callback: impl FnMut(FormReset) + 'static) -> Self
[src]
pub fn onresize(self, callback: impl FnMut(ViewResize) + 'static) -> Self
[src]
pub fn onscroll(self, callback: impl FnMut(Scroll) + 'static) -> Self
[src]
pub fn onseeked(self, callback: impl FnMut(Seeked) + 'static) -> Self
[src]
pub fn onseeking(self, callback: impl FnMut(Seeking) + 'static) -> Self
[src]
pub fn onselect(self, callback: impl FnMut(Select) + 'static) -> Self
[src]
pub fn onselectionchange(
self,
callback: impl FnMut(SelectionChange) + 'static
) -> Self
[src]
self,
callback: impl FnMut(SelectionChange) + 'static
) -> Self
pub fn onselectstart(
self,
callback: impl FnMut(SelectionStart) + 'static
) -> Self
[src]
self,
callback: impl FnMut(SelectionStart) + 'static
) -> Self
pub fn onshow(self, callback: impl FnMut(ContextMenuShow) + 'static) -> Self
[src]
pub fn onstalled(self, callback: impl FnMut(Stalled) + 'static) -> Self
[src]
pub fn onsubmit(self, callback: impl FnMut(Submit) + 'static) -> Self
[src]
pub fn onsuspend(self, callback: impl FnMut(Suspend) + 'static) -> Self
[src]
pub fn ontimeupdate(self, callback: impl FnMut(TimeUpdate) + 'static) -> Self
[src]
pub fn onvolumechange(
self,
callback: impl FnMut(VolumeChange) + 'static
) -> Self
[src]
self,
callback: impl FnMut(VolumeChange) + 'static
) -> Self
pub fn onwaiting(self, callback: impl FnMut(Waiting) + 'static) -> Self
[src]
pub fn onwheel(self, callback: impl FnMut(Wheel) + 'static) -> Self
[src]
impl HtmlElementBuilder for SelectBuilder
[src]
pub fn accesskey(self, to_set: impl ToString) -> Self
[src]
pub fn autocapitalize(self, to_set: impl ToString) -> Self
[src]
pub fn contenteditable(self, to_set: bool) -> Self
[src]
pub fn dir(self, to_set: impl ToString) -> Self
[src]
pub fn draggable(self, to_set: bool) -> Self
[src]
pub fn hidden(self, to_set: bool) -> Self
[src]
pub fn inert(self, to_set: bool) -> Self
[src]
pub fn inputmode(self, to_set: impl ToString) -> Self
[src]
pub fn lang(self, to_set: impl ToString) -> Self
[src]
pub fn slot(self, to_set: impl ToString) -> Self
[src]
pub fn spellcheck(self, to_set: impl ToString) -> Self
[src]
pub fn tabindex(self, to_set: impl ToString) -> Self
[src]
pub fn title(self, to_set: impl ToString) -> Self
[src]
impl NodeWrapper for SelectBuilder
[src]
pub fn raw_node_that_has_sharp_edges_please_be_careful(&self) -> &Node
[src]
impl Parent<Optgroup> for SelectBuilder
[src]
impl Parent<Option> for SelectBuilder
[src]
Auto Trait Implementations
impl !RefUnwindSafe for SelectBuilder
[src]
impl !Send for SelectBuilder
[src]
impl !Sync for SelectBuilder
[src]
impl Unpin for SelectBuilder
[src]
impl !UnwindSafe for SelectBuilder
[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T
[src]
impl<N> Child for N where
N: NodeWrapper,
[src]
N: NodeWrapper,
impl<T> Downcast for T where
T: Any,
T: Any,
pub fn into_any(self: Box<T, Global>) -> Box<dyn Any + 'static, Global>
pub fn into_any_rc(self: Rc<T>) -> Rc<dyn Any + 'static>
pub fn as_any(&self) -> &(dyn Any + 'static)
pub fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
impl<T> Erased for T
impl<T> From<T> for T
[src]
impl<T> Instrument for T
[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>
[src]
pub fn in_current_span(self) -> Instrumented<Self>
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,