RHandsontable is a data grid component with an Excel-like appearance
Questions tagged [rhandsontable]
305 questions
0
votes
1 answer
Saving the updated handsontable in r shiny in other variable
I have a handson table which can be like this-
ID REgularCost Sales Margin
1 100 90 10
Now i want a button which will save this table after making appropriate changes. For e.g. if i change regular cost to 110. Then it automatically…

Varun
- 1
- 2
0
votes
0 answers
JS library load error in shinyapp digital ocean
I have deployed my shinyapp over digital ocean. I use the rhandsontable among other libraries. Since yesterday, I am seeing the following error on my browser console:
Wed Jun 15 2016 21:11:08 GMT+0200 (Romance Daylight Time): Connection opened.…

Sushanta Deb
- 529
- 8
- 20
0
votes
0 answers
rhandsontable shiny remove footer
I use shiny with rhandsontable and bootstrapPage.
I want to disable the table footer (show entries and search).
I tried adding
tags$head(tags$style("tfoot {display: none;}")),
in my shinyUI, but it didn't do anything.
Any ideas?

Krisselack
- 503
- 3
- 16
-1
votes
1 answer
Allow conditional editing of cells in rHandsonTable in R shiny
I have a rhandsontable in R Shiny. This table has 5 columns. I am looking for a functionality where if I edit column 1 then I should not be able to edit column 2 and vice-versa, i.e. user should not be able to edit both columns (column 1 and column…

Prateek
- 61
- 6
-1
votes
4 answers
List to specific dataframe
I want to create a dataframe from a list. The list is from a shiny handsontable input
When I call the input I got:
unlist(input$hot$data)
texta
2 80%
3 …

user2963882
- 625
- 1
- 8
- 19