I would like to prepare a Shiny App in which the user can fill one column (e.g. Col1) with numbers and then press a button to generate entries for Col2 (a transformation of values introduced to Col1, e.g. multiply each row of Col1 by a random number). How should I add the button to the following sample code:
library(rhandsontable)
library(shiny)
# add a sparkline chart
DF$chart = sapply(1:10, function(x) jsonlite::toJSON(list(values=rnorm(10))))
rhandsontable(DF, rowHeaders = NULL) %>%
  hot_col("chart", renderer = htmlwidgets::JS("renderSparkline"))
editTable <- function(DF, outdir=getwd(), outfilename="table"){
  ui <- shinyUI(fluidPage(
  titlePanel("Edit and save a table"),
    sidebarLayout(
      sidebarPanel(
        helpText("Shiny app based on an example given in the rhandsontable package.", 
                 "Right-click on the table to delete/insert rows.", 
                 "Double-click on a cell to edit"),
 wellPanel(
          h3("Table options"),
          radioButtons("useType", "Use Data Types", c("TRUE", "FALSE"))
        ),
        br(), 
 wellPanel(
          h3("Save"), 
          actionButton("save", "Save table")
        ),    
        wellPanel(
          textOutput('result')
        ) 
      ),
      mainPanel(
         rHandsontableOutput("hot")
      )
    )
    ))
   server <- shinyServer(function(input, output) {
    values <- reactiveValues()
    ## Handsontable
    observe({
      if (!is.null(input$hot)) {
        DF = hot_to_r(input$hot)
      } else {
        if (is.null(values[["DF"]]))
          DF <- DF
        else
          DF <- values[["DF"]]
      }
      values[["DF"]] <- DF
    })
    output$hot <- renderRHandsontable({
      DF <- values[["DF"]]
      if (!is.null(DF))
        rhandsontable(DF, useTypes = as.logical(input$useType), stretchH = "all")
    })
    ## Save 
    observeEvent(input$save, {
      finalDF <- isolate(values[["DF"]])
      saveRDS(finalDF, file=file.path(outdir, sprintf("%s.rds", outfilename)))
    })
  })
  ## run app 
  runApp(list(ui=ui, server=server))
  function(input, output)
    return(invisible())
}
( DF <- data.frame(Col1=1:10, Col2=runif(10), stringsAsFactors = FALSE))
editTable(DF)
				
                        
Are you looking for something like that: