| hot_row {rhandsontable} | R Documentation |
Configure a row. See Handsontable.js for details.
hot_row(hot, row, readOnly = NULL)
hot |
rhandsontable object |
row |
numeric row index |
readOnly |
logical making the row read-only |
library(rhandsontable)
MAT = matrix(rnorm(50), nrow = 10, dimnames = list(LETTERS[1:10],
letters[1:5]))
rhandsontable(MAT, width = 300, height = 150) %>%
hot_row(1, readOnly = TRUE)