Difference between revisions of "Qualtrics"

From TSG Doc
Jump to navigation Jump to search
m
 
(3 intermediate revisions by 2 users not shown)
Line 1: Line 1:
== Qualtrics ==
+
{{Infobox software
[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.
+
| name                  = Qualtrics
Using this service is allowed under General Data Protection Regulation (GDPR) since the Faculty and the Supplier have a data processing agreement. Usage is
+
| logo                  = QualtricsLogo.png
only allowed for those purposes where ''on campus'' storage of data is not considered necessary.
+
| logo size              = 180px
 +
| logo alt              = Qualtrics
 +
| caption                =
 +
| developer              =
 +
| released              = <!-- {{Start date and age|YYYY|MM|DD|df=yes}} -->
 +
| discontinued          =
 +
| latest release version =
 +
| latest release date    = <!-- {{Start date and age|YYYY|MM|DD|df=yes}} -->
 +
| latest preview version =
 +
| latest preview date    = <!-- {{Start date and age|YYYY|MM|DD|df=yes}} -->
 +
| installed version      =
 +
| installed version date = <!-- {{Start date and age|YYYY|MM|DD|df=yes}} -->
 +
| status                =
 +
| programming language  =
 +
| operating system      =
 +
| platform              = Web
 +
| website                = [https://www.qualtrics.com/ qualtrics.com]
 +
| resources              = {{Infobox tsg
 +
  | child = yes
 +
  | header1 = FSW User Login
 +
  | data1 = *[https://psychru.eu.qualtrics.com/login PsychRU Login Page]
 +
}} 
 +
}}
  
The subscription to Qualtrics includes support. Please use the Qualtrics ''help > contact support'' function to contact the Support Center.
 
  
=== Support limits ===
+
Qualtrics calls itself "Experience Management Software". We call it an online survey tool. Use of Qualtrics requires a subscription. As of 2025, it is unclear whether the Faculty of Social Sciences will continue its subscription for employees and students. We therefore recommend using [[LimeSurvey]] when creating a new survey.  
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 ===
+
The TSG does not provide support for Qualtrics, as online support by Qualtrics is included in the subscription. However, we can help with custom code if needed (HTML, CSS, Javascript).
 +
 
 +
== Usage ==
 +
While Qualtrics is a US-based company, using their 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.
 +
 
 +
=== Help ===
 +
Please use the Qualtrics ''help > contact support'' function to contact the Support Center.
 +
 
 +
For help with your account or data management, find contact details to our data officer and Qualtrics administrator on [https://www.radboudnet.nl/bsi/research-facilities-0/online-research/surveys#Qualtrics RadboudNet] (login required).
 +
 
 +
== Tweaks ==
 
To add custom JavaScript, click the gear icon (Advanced Question Options) next to a question and click ''Add JavaScript...'' Here are two examples:
 
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 61:
 
</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>

Latest revision as of 10:41, 19 August 2025

Qualtrics
Qualtrics
PlatformWeb
Websitequaltrics.com
FSW User Login


Qualtrics calls itself "Experience Management Software". We call it an online survey tool. Use of Qualtrics requires a subscription. As of 2025, it is unclear whether the Faculty of Social Sciences will continue its subscription for employees and students. We therefore recommend using LimeSurvey when creating a new survey.

The TSG does not provide support for Qualtrics, as online support by Qualtrics is included in the subscription. However, we can help with custom code if needed (HTML, CSS, Javascript).

Usage

While Qualtrics is a US-based company, using their 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.

Help

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

For help with your account or data management, find contact details to our data officer and Qualtrics administrator on RadboudNet (login required).

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 }
    }
})