1
我工作中閃亮的一個Web應用程序發送電子郵件。我對R很熟悉,但是我對HTML,CSS,jQuery等方面的知識缺乏,這使得格式化事情變得非常具有挑戰性。使用actionButton在RShiny
我想包括actionButton
,用戶可以點擊發送電子郵件到管理員的問題或疑慮。這裏是我到目前爲止,哪種作品,但很令人髮指:
library(shiny)
ui <- shinyUI(fluidPage(
# Set layout/format for app
sidebarLayout(
sidebarPanel(
downloadButton("download_data", "Download this Data"),
br(),
actionButton(inputId = "email1",
icon = icon("envelope", lib = "font-awesome"),
a("Contact Admin",
href="mailto:my_awesome_email_address.com"))
),
mainPanel(),
position = "left"
)
)
)
server <- shinyServer(function(input, output) {})
shinyApp(ui, server)
如果可能的話,我想使用,以保持相同的按鈕格式跨越兩個按鈕,類似的actionButton
什麼保持。
在此先感謝!