-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathui.R
More file actions
33 lines (27 loc) · 845 Bytes
/
ui.R
File metadata and controls
33 lines (27 loc) · 845 Bytes
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
28
29
30
31
32
33
# This is the user-interface definition of a Shiny web application.
# You can find out more about building applications with Shiny here:
#
# http://shiny.rstudio.com
#
library(shiny)
shinyUI(fluidPage(
# Application title
titlePanel("Search CDISC Terminology & Standards & Validation Rules"),
# Sidebar with a slider input for number of bins
inputPanel(
textInput("term",
NULL,
value = ""),
submitButton(text = "Search")
),
# Show a plot of the generated distribution
mainPanel(p(textOutput('searchTerm')),tabsetPanel(
tabPanel('Terminology',
dataTableOutput('searchResult1')),
tabPanel('Standard',
dataTableOutput('searchResult2')),
tabPanel('Validation',
dataTableOutput('searchResult3'))
)
, width=12))
)