Learn R Programming

rhandsontable (version 0.3.6)

hot_row: Handsontable widget

Description

Configure a row. See Handsontable.js for details.

Usage

hot_row(hot, row, readOnly = NULL)

Arguments

hot

rhandsontable object

row

numeric row index

readOnly

logical making the row read-only

See Also

hot_cols, hot_cell

Examples

Run this code
# NOT RUN {
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)
# }

Run the code above in your browser using DataLab