, . .
( ). , . , , , ( , ). , , . , .
shinyUI(navbarPage(title=div(img(src="---", height=72, width=72, align="left")), theme ="bootstrap.css", fluid=T,
tabPanel("Startseite",
tags$head(tags$script(HTML('
Shiny.addCustomMessageHandler("jsCode",
function(message) {
console.log(message)
eval(message.code);
}
);
'))),
actionButton("Ja",
label="Neue Berechnung beginnen",
icon("upload",lib="font-awesome")),
actionButton("Nein",
label="Bestehende Berechnung laden",
icon("upload",lib="font-awesome"))),
tabPanel("Einstellungen", progressInit(),
conditionalPanel(condition="input.Ja > 0",
wellPanel(actionButton("save",
label="Einstellungen speichern",
icon("save",lib="font-awesome")
),
br(),
br(),
navlistPanel("Einstellungen",
tabPanel("Interne Kalibrierung",
conditionalPanel(condition="input.save> 0",
wellPanel(actionButton("freqbutton", "Frequenzschätzung durchführen"),
plotOutput("freqPlot")
),
wellPanel(actionButton("intthresbutton", "Berechnung der internen Threshold"),
dataTableOutput("IntTable")
))
),