hot_row: Handsontable widget

Description Usage Arguments See Also Examples

View source: R/rhandsontable.R

Description

Configure properties of all cells in a given row(s). Note that hot_row is not to be confused with hot_rows. See Handsontable.js for details.

Usage

1
hot_row(hot, row, readOnly = NULL)

Arguments

hot

rhandsontable object

row

numeric vector of row indexes

readOnly

logical making the row(s) read-only

See Also

hot_cols, hot_cell, hot_rows

Examples

1
2
3
4
5
6
library(rhandsontable)
MAT = matrix(rnorm(50), nrow = 10, dimnames = list(LETTERS[1:10],
             letters[1:5]))

rhandsontable(MAT, width = 300, height = 150) %>%
  hot_row(c(1,3:5), readOnly = TRUE)

Example output



rhandsontable documentation built on May 27, 2021, 5:07 p.m.