Number Question
A number question component.
Options
- question |
(string|node)
: number question. Default:''
. - hintPlacement |
string
: placement of the hints (eithertop
,left
,right
, orbottom
). Default:'top'
. - hints |
array<(string|node)>
: hints providing guidance on how to answer the question. Default:[]
. - feedback |
boolean
: controls whether to display feedback buttons. Default:true
. - solution |
(number|array<number>)
: a numeric answer to the problem (or multiple correct answers if an array is supplied). Default:none
. - digits |
number
: number of digits for which the answer supplied by the student must match the solution to be considered correct. Set to 0 to match as an integer. If set to null it will search for an exact match. Default:3
. - max |
number
: maximum allowed input value. Default:null
. - min |
number
: minimum allowed input value. Default:null
. - defaultValue |
number
: pre-selected value of number input. Default:none
. - provideFeedback |
boolean
: indicates whether feedback including the correct answer should be displayed after learners submit their answers. Default:true
. - submitAfterFeedback |
boolean
: controls whether one should be able to resubmit even after the solution has been revealed. Default:false
. - nTries |
number
: after how many tries feedback should be supplied (ifprovideFeedback
istrue
). Default:1
. - disableSubmitNotification |
boolean
: controls whether to disable submission notifications. Default:false
. - chat |
boolean
: controls whether the element should have an integrated chat. Default:false
. - until |
Date
: time until students should be allowed to submit answers. Default:none
. - points |
number
: maximum number of points awarded in grading. Default:10
. - style |
object
: CSS inline styles. Default:{}
. - onChange |
function
: callback which is triggered after the value of the number field changes; receives the current value as its sole argument. Default:onChange() {}
. - onSubmit |
function
: callback invoked when answer is submitted; has as first parameter aboolean
indicating whether the answer was correctly answered (if applicable,null
otherwise) and the supplied answer as the second parameter. Default:onSubmit() {}
.
Examples
- Minimal
- With Markdown
- With CSS
Live Editor
Result
ReferenceError: Provider is not defined