File: table_customize.R

package info (click to toggle)
r-cran-shinystan 2.6.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 3,172 kB
  • sloc: sh: 15; makefile: 7
file content (27 lines) | stat: -rw-r--r-- 651 bytes parent folder | download | duplicates (2)
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")
  )
)