我正在使用App
构建Rshiny
。
我有几个infoBox
我希望在点击href
时使用infoBox
选项弹出一个弹出窗口。
我使用shinyBS作为弹出选项。 这是我试过的:
valueBox(value=entry_01, icon = icon("users","fa-lg",lib="font-awesome"),href=shinyInput(actionLink,id='button_01',len=1,class="btn btn-default action-button",label=""),
width=NULL,color = "light-blue",subtitle = ""
)
但我发现如果我们想在href
等外部网站上进行链接,则href = "http://stackoverflow.com/"
选项可以正常运行
但我不知道如何链接应用程序的内部链接。
我进行了这个编辑,因为我找到了一个解决方案,通过在valueBox输出列表中添加两个变量,使盒子可以点击并闪亮地认为它是一个动作按钮。
- 班级action-button
- id
允许我们使用observe或observeEvent来检测单击valuebox的时间。
require(shiny)
require(shinydashboard)
header <- dashboardHeader(title="ReproductibleExample")
sidebar <- dashboardSidebar(disable=T)
body <- dashboardBody(valueBoxOutput("box_01"),
textOutput("print"))
ui <- dashboardPage(header, sidebar, body)
server<-shinyServer(function(input, output,session) {
output$box_01 <- renderValueBox({
entry_01<-20
box1<-valueBox(value=entry_01
,icon = icon("users",lib="font-awesome")
,width=NULL
,color = "blue"
,href="#"
,subtitle=HTML("<b>Test click on valueBox</b>")
)
box1$children[[1]]$attribs$class<-"action-button"
box1$children[[1]]$attribs$id<-"button_box_01"
return(box1)
})
output$print<-renderText({
print(input$button_box_01)
})
})
shinyApp(ui,server)
答案 0 :(得分:3)
我决定改变方法。我现在在值框的子窗口元素中包含一个actionbutton(或actionLink),并创建一个链接到此actionButton的bsModal元素。
如果您不熟悉ShinyBS软件包,它允许使用popover,工具提示等功能而不包含HTML或java。
我遵循@Mikko Martila的建议Shiny: adding addPopover to actionLink,这是一个可重复的示例,向您展示我的问题:
library("shiny")
library("shinydashboard")
library("shinyBS")
header <- dashboardHeader(title = "reporductible example")
body <- dashboardBody(valueBoxOutput("box_01"),
bsModal("modal", "foo", trigger = "", "bar"))
sidebar <- dashboardSidebar()
ui <- dashboardPage(header,sidebar,body,skin="green")
server = function(input, output, session) {
# ----- First info box synthesis menu
output$box_01 <- renderValueBox({
entry_01 <- "BlaBla"
valueBox(value=entry_01, icon = icon("users",lib="font-awesome"),
width=NULL,color = "blue",subtitle = HTML("<b>my substitle</b> <button id=\"button\" type=\"button\" class=\"btn btn-default action-button\">Show modal</button>")
)
})
observeEvent(input$button, {
toggleModal(session, "modal", "open")
})
}
runApp(list(ui = ui, server = server))
我使用HTML()
选项在值框的副标题中添加我的按钮。
这不是我想要的,但它可以完成工作。
你可以通过使用这样的字幕来完成动作链接(它看起来更好):
subtitle=HTML("<b>my subtitle</b><a id=\"button_box_05\" href=\"#\" class=\"action-button\">
<i class=\"fa fa-question-circle\"></i>
</a>")
答案 1 :(得分:2)
我只知道坏变种
1)添加函数tags$script(HTML("function clickFunction(link){
Shiny.onInputChange('linkClicked',link);
}"))
2)编辑valueBox的href子项
aa=valueBox(value="22", icon = icon("users","fa-lg",lib="font-awesome"),href="www",
width=NULL,color = "light-blue",subtitle = ""
)
aa$children[[1]]=a(href="#","onclick"=paste0("clickFunction('","click","'); return false;"),aa$children[[1]]$children)
3)observeEvent(input$linkClicked,{..})
答案 2 :(得分:2)
我遇到了同样的问题并且经历了这个链接,只是让它工作,没有添加单独的按钮,就像这样。 希望这可以帮助那些寻求解决类似问题的人
require(shiny)
require(shinydashboard)
require(shinyBS)
header <- dashboardHeader(title="ReproductibleExample")
sidebar <- dashboardSidebar(disable=T)
body <- dashboardBody(valueBoxOutput("box_01"),
textOutput("print"),bsModal("mod","title","btn"))
ui <- dashboardPage(header, sidebar, body)
server<-shinyServer(function(input, output,session) {
output$box_01 <- renderValueBox({
entry_01<-20
box1<-valueBox(value=entry_01
,icon = icon("users",lib="font-awesome")
,width=NULL
,color = "blue"
,href="#"
,subtitle=HTML("<b>Test click on valueBox</b>")
)
box1$children[[1]]$attribs$class<-"action-button"
box1$children[[1]]$attribs$id<-"button_box_01"
return(box1)
})
observeEvent(input$button_box_01, {
toggleModal(session,"mod","open")
output$print<-renderText({
print(input$button_box_01)
})})
})
shinyApp(ui,server)