Sorry. I misinterpreted. The table is checking fine, but you want the dashboard check.
In order to get a dashboard check:
- No text input components or explain prompts (best is a dot)
- Any component a student interacts with that you want to check for correctness needs a “
correct:
” sink. (e.g. your self-checking table)
- Any component not graded needs
readOnly: true
(e.g. your data table). Notes and media components can’t be graded though, so don’t need it.
In your self-checking table :
cellSuffix(1,1): when check1 "✅" otherwise "❌"
cellSuffix(1,2): when check2 "✅" otherwise "❌"
cellSuffix(1,3): when check3 "✅" otherwise "❌"
check1=this.cellNumericValue(1,1) = key.number("s_1")
check2=this.cellNumericValue(1,2) = key.number("s_2")
check3=this.cellNumericValue(1,3) = key.number("s_3")
correct: check1 and check2 and check3