Forum Discussion
LukeWestfall
9 months agoCommunity Member
SCORM/xAPI not passing grade to Brightspace (D2L) gradebook
Hello,
D2L's gradebook only pulls the cmi.core.score.raw value from SCORM objects, but Rise only passes that value via quiz objects. In Moodle 3, we can set pass completion status as a score to it...
LukeWestfall
9 months agoCommunity Member
Oh interesting! And for others coming after, the CustomEvent you added looks something like:
const ev = new CustomEvent("lmssetvalue", {
bubbles: true,
detail: {
api: SCORM_objAPI,
key: strElement,
value: strValue
}
});
window.ldispatchEvent(ev);