TextArea
An input field that let the user enter a multi-line text
Provides a wrapper for Phoenix.HTML.Form's textarea/3
function.
All options passed via opts
will be sent to textarea/3
. Explicitly
defined properties like value
and class
can be set directly and will
override anything in opts
.
<TextArea
rows="4"
opts={placeholder: "4 lines of textarea"}
/>
# Public API
Name | Description | Type | Values | Default |
---|---|---|---|---|
id
| The id of the corresponding input field. |
:string
| — | — |
opts
| Options list. |
:keyword
| — |
[]
|
class
| Class or classes to apply to the input. |
:css_class
| — | — |
value
| Value to pre-populated the input. |
:string
| — | — |
name
| The name of the corresponding input field. |
:string
| — | — |
field
| An identifier for the input. |
:any
| — | — |
form
| An identifier for the form. |
:form
| — | — |
values
| List values that will be sent as part of the payload triggered by an event. |
:keyword
| — |
[]
|
rows
| Specifies the visible number of lines in a text area. |
:string
| — | — |
cols
| Specifies the visible width of a text area. |
:string
| — | — |
Name | Description | Arguments |
---|
Name | Description |
---|---|
keydown
|
Triggered when a key on the keyboard is pressed. |
keyup
|
Triggered when a key on the keyboard is released. |
window_keydown
|
Triggered when a key on the keyboard is pressed (window-level). |
window_keyup
|
Triggered when a key on the keyboard is released (window-level). |
blur
|
Triggered when the component loses focus. |
focus
|
Triggered when the component receives focus. |
window_blur
|
Triggered when the page loses focus. |
window_focus
|
Triggered when the page receives focus. |
click
|
Triggered when the component receives click. |
capture_click
|
Triggered when the component captures click. |
Name | Description |
---|