Facilitator Interface Class Results

Hi,

My team and I are working on a way for the facilitator of the simulation to be able to view the results of the users. We know that the facilitator interface has a default section of “Class Results” which allows the facilitator to view any runs made by the users. Is there a way to change the page the facilitator views when clicking the “view” button within the user run table. Our goal is to have the facilitator view a results page of the user that shows a summary of all the choices the user made during the simulation.

Any insights or assistance with this would be great.

Hi,

You can use jQuery to modify the impersonate link to include the pagename at the end of the link.

Put this code at the end of class_results.html. Change “decisions_1.html” to be the file name of the desired destination page.

Warning - modified HTML code can sometimes be overwritten by the interface builder if you edit in the builder. Be sure to backup the file.

<script>
function updateLink(link) {
	if (link.href.indexOf('impersonate') != -1 && link.href.indexOf('#') == -1) {
			link.href = link.href + '#decisions_1.html';
			console.log(link.href);
		}
	}
	
function updateAllLinks() {	
	$('a.btn-link').each(function f(i, link) {
		updateLink(link);
	}); 
}

setTimeout(updateAllLinks, 2000);
</script >

Thank you for the assistance. I seem to have run into another issue with the facilitator pages. It appears that the navigation for these pages has broken and I am unable to view any of the pages that should be visible to the facilitator end user. I am getting an html error of " Page undefined.html was not found". I am unsure how to restore the navigation to the facilitator introduction page.

Hi–

Were you able to correct this? You should be able to edit the navigation by clicking the “Pages” menu then going to “Navigation Settings”.

Please provide the URL of the sim, or send a note to support@forio.com with the URL.

WILL