I need to add radio button to one of the column of DT Data Table and on selection of radio button need to have the popup with a button. I am able accomplish the same using action button , looking for the ways to achieve the same using radio button. Code with action button:
library(shiny)
library(DT)
library(shinyBS)
shinyApp(
ui <- fluidPage(
actionButton("Refresh","Refresh"),
br(),
br(),
DT::dataTableOutput("table"),uiOutput("popup")
),
server <- function(input, output,session) {
shinyInput <- function(FUN, len, id, ...) {
inputs <- character(len)
for (i in seq_len(len)) {
inputs[i] <- as.character(FUN(paste0(id, i), ...))
}
inputs
}
df <- reactiveValues(data = data.frame(
cbind(Delete = shinyInput(actionButton,nrow(mtcars),'button_', label = " ",onclick = 'Shiny.onInputChange(\"select_button\", this.id)'),
mtcars)
))
output$table <- DT::renderDataTable(
df$data, server = FALSE, escape = FALSE, selection = 'none'
)
observeEvent(input$select_button, {
toggleModal(session, "modalExample", "open")
})
SelectedRow <- eventReactive(input$select_button,{
as.numeric(strsplit(input$select_button, "_")[[1]][2])
})
output$popup <- renderUI({
bsModal("modalExample", "Do you want to delete the row?", "", size = "large",
actionButton("Delete","Delete")
)
})
observeEvent(input$Refresh,{
mtcars <<- retrieveValues()
df$data <- data.frame(
cbind(Delete = shinyInput(actionButton,nrow(mtcars),'button_', label = HTML('<input type="radio" name="radio" value="1"/>'),onclick = 'Shiny.onInputChange(\"select_button\", this.id)'),
mtcars)
)
})
}
)
Code