Closed SarahWagner closed 5 years ago
The following example, where the row names are set to TRUE works perfectly, i.e. the matrix extends as I add data.
TRUE
matrixInput( inputId = "dataMatrix", class = "numeric", value = matrix(), copy = TRUE, paste = TRUE, cols = list( names = TRUE, extend = TRUE, delta = 1, editableNames = TRUE ), rows = list( names = TRUE, editableNames = TRUE, extend = TRUE, delta = 1 ) )
As I change the name option in rows to FALSE, the matrix does not extend anymore.
name
rows
FALSE
matrixInput( inputId = "dataMatrix", class = "numeric", value = matrix(), copy = TRUE, paste = TRUE, cols = list( names = TRUE, extend = TRUE, delta = 1, editableNames = TRUE ), rows = list( names = FALSE, editableNames = TRUE, extend = TRUE, delta = 1 ) )
Error message:
fixed as of 0.1.3.
@SarahWagner can you check if it works now?
The following example, where the row names are set to
TRUE
works perfectly, i.e. the matrix extends as I add data.As I change the
name
option inrows
toFALSE
, the matrix does not extend anymore.