Я пытался выяснить, как включить перемещение строк в блестящем ручном столе.Как описано здесь: https://handsontable.com/docs/6.2.1/demo-moving.html. Я не могу понять, как передать параметр в таблицу Хэндсона.
library(shiny)
library(rhandsontable)
# Define UI for application that draws a histogram
ui <- fluidPage(
# Application title
titlePanel("rhandsontable test"),
# Show a plot of the generated distribution
mainPanel(
rHandsontableOutput("test")
)
)
# Define server logic required to draw a histogram
server <- function(input, output) {
output$test <- renderRHandsontable({
rhandsontable(iris)
})
}
# Run the application
shinyApp(ui = ui, server = server)