Table output component
tuiOutputTable.RdDisplays the value of output$<outputId> as a table rendered from a data
frame produced by tuiRenderTable().
Usage
tuiOutputTable(
outputId,
overflowX = "scroll",
overflowY = "scroll",
headerClickId = NULL,
width = NULL,
height = NULL,
minHeight = NULL,
maxHeight = NULL,
widthPercent = NULL,
heightPercent = NULL
)Arguments
- outputId
A single character string naming the output id.
- overflowX, overflowY
Overflow policy for table clipping/scrolling on each axis. Use
"scroll"(default) to make wide/tall tables navigable,"clip"to crop to viewport bounds, or"visible"to allow overflow.- headerClickId
Optional input id for header click events. When set, clicking a table header cell updates
input$<headerClickId>with a list containingcolumn(name) andcolumnIndex(1-based position).- width, height
Optional fixed width/height in terminal cells.
- minHeight, maxHeight
Optional min/max height in terminal cells.
- widthPercent, heightPercent
Optional relative size between
0and1.widthPercentis interpreted bytuiRow()andheightPercentbytuiColumn()for strict main-axis percentages.