<ol>
<ol> is a Sectional
component that defines an ordered (numbered) list. List items are nested within using an <li> tag.
Attributes and Properties
Attributes for <ol>
Scoring (10)
aggregateScoresboolean. Default value: false. Whether to aggregate scores of scored descendants into a section credit-achieved value.
colorAnswersSeparatelyboolean. Default value: false. When section-wide check work is enabled, color each answer based on its own correctness rather than the section's overall credit.
colorCorrectnessboolean. Default value: true. Whether to color-code the answers it contains based on correctness.
displayDigitsForCreditAchievedinteger. Default value: 3. Number of significant digits to display for the credit achieved value.
maxNumAttemptsinteger. Default value: Infinity. Maximum number of times the section-wide check-work button can be submitted. Once reached, all enclosed answers are disabled.
sectionWideCheckWorkboolean. Default value: false. Whether to show a single section-wide check-work button instead of per-answer buttons.
showCorrectnessboolean. Default value: true. Whether to display correctness indicators for the answers it contains.
submitLabeltext. Default value: Check Work. Label for the section-wide submit button when correctness is shown.
submitLabelNoCorrectnesstext. Default value: Submit Response. Label for the section-wide submit button when correctness is not shown.
weightnumber. Default value: 1. Relative weight of this section when aggregated by an enclosing scored section.
Other (2)
Common to all components (9)
copyreference. Create an independent copy of another component by reference. Enter a references a $name.
disabledboolean. Default value: false. Whether this component is disabled and cannot be interacted with.
extendreference. Extend another component by reference, inheriting its children and attributes. Enter a reference as $name.
fixedboolean. Default value: false. Whether this component's value is fixed and cannot be modified.
fixLocationboolean. Default value: false. Whether this component's location is fixed (preventing it from being moved while still allowing other modifications).
hideboolean. Default value: false. Whether to hide this component from the rendered output.
isResponseboolean. Default value: false. Whether this component is treated as a response for the purposes of assessment.
nametext. The name used to reference this component from elsewhere in the document.
styleNumberinteger. Default value: 1. The style number used to select this component's visual styling from the available style definitions.
Properties for <ol name="o">
Scoring (7)
$o.aggregateScoresboolean. Whether scores of scored descendants are aggregated into this section's credit value.
$o.displayDigitsForCreditAchievedinteger. Number of significant digits to display for the credit achieved value.
$o.maxNumAttemptsinteger. Maximum number of times the section-wide check-work button can be submitted. Once reached, all enclosed answers are disabled.
$o.sectionWideCheckWorkboolean. Whether to show a single section-wide check-work button instead of per-answer buttons.
$o.submitLabeltext. Label for the section-wide submit button when correctness is shown.
$o.submitLabelNoCorrectnesstext. Label for the section-wide submit button when correctness is not shown.
$o.weightnumber. Relative weight of this section when aggregated by an enclosing scored section.
Other (8)
$o.creditAchievednumber. Aggregate credit achieved (between 0 and 1) for scored descendants of this section.
$o.disabledboolean. Whether this component is disabled and cannot be interacted with.
$o.fixedboolean. Whether this component's value is fixed and cannot be modified.
$o.fixLocationboolean. Whether this component's location is fixed (preventing it from being moved while still allowing other modifications).
$o.numAttemptsLeftinteger. Remaining number of section-wide submissions before the maximum is reached.
$o.numSubmissionsinteger. Number of times the section-wide check-work button has been submitted.
$o.percentCreditAchievednumber. Aggregate credit achieved as a percentage (between 0 and 100).
Common to all components (4)
$o.doenetMLtext. The DoenetML source code that produced this component.
$o.hideboolean. Whether to hide this component from the rendered output.
$o.isResponseboolean. Whether this component is treated as a response for the purposes of assessment.
$o.styleNumberinteger. The style number used to select this component's visual styling from the available style definitions.
Examples
Example: <ol> with nested <li>
<ol> renders an ordered list, with list items given by <li> children. <ol>
should not contain any components other than <li> children. Individual <li> children
may themselves contain graphs, problems, paragraphs, and other content.
Attribute Examples
Attribute Example: level
When nesting <ol> components, the level attribute can be used to specify a
change in the counting marker for the inner lists.
Attribute Example: marker
Use the marker attribute to indicate a specific counting marker for the list. See
the level example for the default markers at each level.