We just added a few sinks for tables that you might find useful.
cellSuffix: shows a suffix on the right side of a cell. Only shows up when the student focuses into the cell, or when the cell has content. Recommended if you ever want students to enter a unitted number (“ft”) or a percent ("%"). Let us know if you find other uses!
cellErrorMessage: shows an error with a tooltip to the student. Recommended if you’re trying to parse their work but can’t. Note: this sink is different from the “warning” sink, which shows an error to the teacher. This is just student-facing.
cellDisableEvaluation: disables the default evaluation on table cells of math type. For example, if you want students to type a fraction into the first cell of the first row without seeing the decimal evaluation you could use
cellDisableEvaluation(1,1): true
to disable the evaluation in that cell and not show the decimal.
As far as I know, you have to disable evaluation for each cell.
I made a template to disable evaluation on the first column which you can copy/paste to save time. If you want a different column, just change the column number from a 1:
cellDisableEvaluation(1,1): true
cellDisableEvaluation(2,1): true
cellDisableEvaluation(3,1): true
cellDisableEvaluation(4,1): true
cellDisableEvaluation(5,1): true
cellDisableEvaluation(6,1): true
cellDisableEvaluation(7,1): true
cellDisableEvaluation(8,1): true
cellDisableEvaluation(9,1): true