Skip to contents

This function generates a custom HTML table with editable fields, allowing users to enter responses directly into the table. It uses `tag_custom_input` along with various HTML tags and CSS classes to create a seamless data entry experience. Data entered in the table is accessible on the server side via the `input` object, enabling real-time data capture within a Shiny session.

Usage

tag_table_response_input(ns_prefix, row_count)

Arguments

ns_prefix

The namespace prefix. Pass `session$ns(id)` to ensure that user inputs are accessible in the same module via `input`.

row_count

The number of rows to include in the table.

Value

An HTML table with custom input fields for each cell, styled for data entry in Shiny applications.

See also

[tag_table_response_report] for a static, read-only version of the response table.