Submitted(
self,
text_area: InlinePromptTextArea,
value: str,
)Message| Name | Type | Description |
|---|---|---|
text_area* | InlinePromptTextArea | Input that emitted the submission. |
value* | str | Complete input text at submission time, with any collapsed-paste placeholders expanded to their full content. |
| Name | Type |
|---|---|
| text_area | InlinePromptTextArea |
| value | str |
Posted when the user presses Enter to submit text.
Subclasses should re-declare a nested Submitted so Textual derives a
distinct handler name (e.g. on_goal_review_text_area_submitted).
Without it, a host mounting more than one inline prompt cannot tell
their submissions apart, and the base handler name goes unhandled.