R/UI/dqTab.R

library(shiny)
dqTab <- tabPanel("Data Quality Issues",
                  fluidRow(
                           h2("Mint Transactions")
                  ),
                  fluidRow(
                    column(3,
                           checkboxInput('mintShowErrors', 'Show Only Errored Records', value = TRUE, width = NULL))
                  ),
                  fluidRow(
                           tableOutput('dqMint')
                    ),
                  fluidRow(
                    h2("Data Entry Transactions")
                  ),
                  fluidRow(
                    column(3,
                           checkboxInput('tranShowErrors', 'Show Only Errored Records', value = TRUE, width = NULL))
                  ),
                  fluidRow(tableOutput('dqTran')
                    )
                  )
ravi9884/PersonalFinance documentation built on May 4, 2019, 6:38 p.m.