1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
|
fluidRow(
# column(
# width = 4,
# helpText(style = "margin-bottom: 2px;", "Table tips: Drag column names to rearrange the table columns.")
# # helpText(style = "margin-top: 2px; font-size: 11px;", "Drag column names to rearrange the table columns.")
# ),
style = "margin-left: 4px; margin-bottom: 6px;",
column(
width = 2,
div(
strong(id = "table_digits_txt", "Digits"),
numericInput(
"table_digits",
label = NULL,
value = 1,
min = 0,
max = 7,
step = 1
)
)
),
column(
width = 2,
offset = 8,
a_glossary("open_glossary_from_table")
)
)
|