[][src]Struct yew_styles::forms::form_textarea::Props

pub struct Props {
    pub code_ref: NodeRef,
    pub key: String,
    pub class_name: String,
    pub id: String,
    pub placeholder: String,
    pub textarea_style: Palette,
    pub textarea_size: Size,
    pub maxlength: u32,
    pub minlength: u16,
    pub disabled: bool,
    pub name: String,
    pub readonly: bool,
    pub required: bool,
    pub autofocus: bool,
    pub autocomplete: bool,
    pub cols: u16,
    pub rows: u16,
    pub spellcheck: bool,
    pub oninput_signal: Callback<InputData>,
    pub onblur_signal: Callback<FocusEvent>,
    pub onkeydown_signal: Callback<KeyboardEvent>,
    pub error_state: bool,
    pub error_message: String,
    pub wrap: WrapText,
}

Fields

code_ref: NodeRef

General property to get the ref of the component

key: String

General property to add keys

class_name: String

General property to add custom class styles

id: String

General property to add custom id

placeholder: String

Content to be appear in the form control when the form control is empty

textarea_style: Palette

The input style according with the purpose. Default Palette::Standard

textarea_size: Size

The size of the input. Default Size::Medium

maxlength: u32

Maximum length (number of characters) of value. Default 1000

minlength: u16

Minimum length (number of characters) of value

disabled: bool

Whether the form control is disabled. Default false

name: String

The name of the textarea

readonly: bool

The value is not editable. Default false

required: bool

A value is required or must be check for the form to be submittable. Default false

autofocus: bool

Automatically focus the form control when the page is loaded. Default false

autocomplete: bool

Hint for form autofill feature. Default false

cols: u16

The visible width of the text control

rows: u16

The number of visible text lines for the control

spellcheck: bool

Specifies whether the "textarea" is subject to spell checking by the underlying browser/OS. Default false

oninput_signal: Callback<InputData>

Signal to emit the event input

onblur_signal: Callback<FocusEvent>

Signal to emit the event blur

onkeydown_signal: Callback<KeyboardEvent>

Signal to emit the event keypress

error_state: bool

Error state for validation. Default false

error_message: String

Show error message when error_state is true

wrap: WrapText

Indicates how the control wraps text. Default WrapText::Soft

Trait Implementations

impl Clone for Props[src]

impl PartialEq<Props> for Props[src]

impl Properties for Props[src]

type Builder = PropsBuilder<PropsBuilderStep_build>

Builder that will be used to construct properties

impl StructuralPartialEq for Props[src]

Auto Trait Implementations

impl !RefUnwindSafe for Props

impl !Send for Props

impl !Sync for Props

impl Unpin for Props

impl !UnwindSafe for Props

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Any for T where
    T: Any

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> CloneAny for T where
    T: Clone + Any

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,