[−][src]Struct moxie_dom::elements::forms::TextareaBuilder
The HTML <textarea>
element represents a multi-line plain-text editing control,
useful when you want to allow users to enter a sizeable amount of free-form text, for
example a comment on a review or feedback form.
A type for initializing the element's attributes before calling build
.
Implementations
impl TextareaBuilder
[src]
impl TextareaBuilder
[src]
pub fn autocomplete(self, to_set: impl ToString) -> Self
[src]
This attribute indicates whether the value of the control can be automatically completed by the browser. Possible values are:
- off: The user must explicitly enter a value into this field for every use, or the document provides its own auto-completion method; the browser does not automatically complete the entry.
- on: The browser can automatically complete the value based on values that the user has entered during previous uses.
If the autocomplete attribute is not specified on a <textarea>
element, then the
browser uses the autocomplete attribute value of the <textarea>
element's form owner.
The form owner is either the <form>
element that this <textarea>
element is a
descendant of or the form element whose id is specified by the form attribute of the
input element. For more information, see the autocomplete attribute in <form>
.
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-associated element in a document can have this attribute specified.
pub fn cols(self, to_set: u32) -> Self
[src]
The visible width of the text control, in average character widths. If it is not specified, the default value is 20.
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 when the disabled attribute is set, the
control is enabled.
pub fn form(self, to_set: impl ToString) -> Self
[src]
The form element that the <textarea>
element is associated with (its "form owner").
The value of the attribute must be the id of a form element in the same document. If
this attribute is not specified, the <textarea>
element must be a descendant of a form
element. This attribute enables you to place <textarea>
elements anywhere within a
document, not just as descendants of form elements.
pub fn maxlength(self, to_set: u32) -> Self
[src]
The maximum number of characters (UTF-16 code units) that the user can enter. If this value isn't specified, the user can enter an unlimited number of characters.
pub fn minlength(self, to_set: u32) -> Self
[src]
The minimum number of characters (UTF-16 code units) required that the user should enter.
pub fn name(self, to_set: impl ToString) -> Self
[src]
The name of the control.
pub fn placeholder(self, to_set: impl ToString) -> Self
[src]
A hint to the user of what can be entered in the control. Carriage returns or line-feeds within the placeholder text must be treated as line breaks when rendering the hint.
Note: Placeholders should only be used to show an example of the type of data that
should be entered into a form; they are not a substitute for a proper <label>
element
tied to the input.
pub fn readonly(self, to_set: bool) -> Self
[src]
Indicates that the user cannot modify the value of the control. Unlike the disabled attribute, the readonly attribute does not prevent the user from clicking or selecting in the control. The value of a read-only control is still submitted with the form.
pub fn required(self, to_set: impl ToString) -> Self
[src]
This attribute specifies that the user must fill in a value before submitting a form.
pub fn rows(self, to_set: impl ToString) -> Self
[src]
The number of visible text lines for the control.
pub fn spellcheck(self, to_set: impl ToString) -> Self
[src]
Specifies whether the <textarea>
is subject to spell checking by the underlying
browser/OS. the value can be:
- true: Indicates that the element needs to have its spelling and grammar checked.
- default : Indicates that the element is to act according to a default behavior, possibly based on the parent element's own spellcheck value.
- false : Indicates that the element should not be spell checked.
pub fn wrap(self, to_set: impl ToString) -> Self
[src]
Indicates how the control wraps text. Possible values are:
- hard: The browser automatically inserts line breaks (CR+LF) so that each line has no more than the width of the control; the cols attribute must also be specified for this to take effect.
- soft: The browser ensures that all line breaks in the value consist of a CR+LF pair, but does not insert any additional line breaks.
If this attribute is not specified, soft is its default value.
Trait Implementations
impl ElementBuilder for TextareaBuilder
[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 TextareaBuilder where
E: GlobalEvent,
[src]
E: GlobalEvent,
impl GlobalEventHandler for TextareaBuilder
[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 TextareaBuilder
[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 TextareaBuilder
[src]
pub fn raw_node_that_has_sharp_edges_please_be_careful(&self) -> &Node
[src]
impl Parent<Text> for TextareaBuilder
[src]
Auto Trait Implementations
impl !RefUnwindSafe for TextareaBuilder
[src]
impl !Send for TextareaBuilder
[src]
impl !Sync for TextareaBuilder
[src]
impl Unpin for TextareaBuilder
[src]
impl !UnwindSafe for TextareaBuilder
[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>,