|
@@ -19,7 +19,7 @@ class Textarea(Input):
|
|
|
:param label: displayed name for the textarea
|
|
|
:param placeholder: text to show if no value is entered
|
|
|
:param value: the initial value of the field
|
|
|
- :param on_change: callback to execute when the input is confirmed by leaving the focus
|
|
|
+ :param on_change: callback to execute when the value changes
|
|
|
:param validation: dictionary of validation rules, e.g. ``{'Too short!': lambda value: len(value) < 3}``
|
|
|
"""
|
|
|
super().__init__(label, placeholder=placeholder, value=value, on_change=on_change, validation=validation)
|