Javascript – Sticky Column and Row Names in Rhandsontable
I am currently working on a Shiny application where I am using the rhandsontable package to display a table. Here is the code I am using: library(shiny) library(rhandsontable) ui <- fluidPage( mainPanel( rHandsontableOutput("myTable") ) ) server <- function(input, output) {…