Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Textarea

Multi-line text field for longer content.

SQLite Storage

TEXT column.

Definition

crap.fields.textarea({
    name = "description",
    admin = {
        placeholder = "Enter a description...",
        rows = 12,
        resizable = false,
    },
})

Admin Options

OptionTypeDefaultDescription
rowsinteger8Number of visible rows
resizablebooleantrueAllow vertical resize via drag handle

Admin Rendering

Renders as a <textarea> element. By default, the textarea is vertically resizable. Set admin.resizable = false to disable the resize handle.