Difference between revisions of "Qualtrics"

From TSG Doc
Jump to navigation Jump to search
(Created page with "== Qualtrics == [http://psychru.eu.qualtrics.com Qualtrics] is a web service to which the Faculty of Social Sciences has a subscription for its employees and students. Using...")
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
 
The subscription to Qualtrics includes support. Please use the Qualtrics ''help > contact support'' function to contact the Support Center.
 
The subscription to Qualtrics includes support. Please use the Qualtrics ''help > contact support'' function to contact the Support Center.
  
=== Support limits ===
+
== Support limits ==
 
Qualtrics support does not include help with custom code (HTML, CSS, JavaScript): ''Qualtrics Support does not offer assistance or consultation on custom coding''  
 
Qualtrics support does not include help with custom code (HTML, CSS, JavaScript): ''Qualtrics Support does not offer assistance or consultation on custom coding''  
 
Contact the Technical Support Group if you need help with this.
 
Contact the Technical Support Group if you need help with this.
  
=== Tweaks ===
+
== Tweaks ==
To add custom JavaScript, click the gear icon (Advanced Question Options) next to a question and click ''Add JavaScript...''  
+
To add custom JavaScript, click the gear icon (Advanced Question Options) next to a question and click ''Add JavaScript...'' Here are two examples:
==== Check for leaving page ====
+
=== Check for leaving page ===
 
<pre>
 
<pre>
 
var leaveDates = []
 
var leaveDates = []
Line 32: Line 32:
 
</pre>
 
</pre>
  
==== prevent cutting and pasting ====
+
=== prevent cutting and pasting ===
 
Use the following code to prevent cutting and pasting from and to text fields, expect people to become angry if you use this.
 
Use the following code to prevent cutting and pasting from and to text fields, expect people to become angry if you use this.
 
<pre>
 
<pre>

Revision as of 15:01, 6 March 2020

Qualtrics

Qualtrics is a web service to which the Faculty of Social Sciences has a subscription for its employees and students. Using this service is allowed under General Data Protection Regulation (GDPR) since the Faculty and the Supplier have a data processing agreement. Usage is only allowed for those purposes where on campus storage of data is not considered necessary.

The subscription to Qualtrics includes support. Please use the Qualtrics help > contact support function to contact the Support Center.

Support limits

Qualtrics support does not include help with custom code (HTML, CSS, JavaScript): Qualtrics Support does not offer assistance or consultation on custom coding Contact the Technical Support Group if you need help with this.

Tweaks

To add custom JavaScript, click the gear icon (Advanced Question Options) next to a question and click Add JavaScript... Here are two examples:

Check for leaving page

var leaveDates = []
function handleLeave(event) {
    console.log("out")
    leaveDates.push(new Date().toISOString())
    alert("Please don't leave the window")
}
Qualtrics.SurveyEngine.addOnload(function(){
    console.log("load")   
    document.getElementById("Page").addEventListener("mouseleave", handleLeave, false)
})

Qualtrics.SurveyEngine.addOnUnload(function(){
    console.log("unload")
    document.getElementById("Page").removeEventListener("mouseleave", handleLeave, false)
    Qualtrics.SurveyEngine.setEmbeddedData("date", leaveDates.join(","))
})

prevent cutting and pasting

Use the following code to prevent cutting and pasting from and to text fields, expect people to become angry if you use this.

Qualtrics.SurveyEngine.addOnReady(function(){
    /* Place your JavaScript here to run when the page is fully displayed */
    ee = document.getElementsByClassName("InputText")
    for(e of ee){
        e.onpaste=function(){ return false }
        e.oncut=function(){ return false }
    }
})