Set data inside a Handsontable instance without recreating the widget. Send the new values as a vector of rows, a vector of columns, and a vector of values. If different length vectors are supplied then the shorter ones are recycled to match the length of the longest.
set_data(id, row, col, val, session, zero_indexed = F)
The id of the table to interact with.
Integer vector of row indexes.
Integer vector the column indexes.
Vector of values to set at each row-col pair.
The session that is associated with your shiny server function. The table is only interactive when used in shiny so we only use set_data when the table is in shiny.
Default FALSE. Set to TRUE if you are supplying row and col indexes that are already 0-based.