The matrixProfileTextAbove moves matrix profile statements above answer choices when in 'desktop' mode. Features:
Example:
This function is available for a reasonable fee. Contact TomG on the Qualtrics Community to learn more.
Add the matrixProfileTextAbove function to the survey header to make it available to any question in the survey. Go to Look & Feel → General → Header edit →
and paste the provided matrixProfileTextAbove function JS inside a script tag:
<script>/*Paste matrixProfileTextAbove function JS here*/</script>
Alternatively, paste the matrixProfileTextAbove function JS into a question's JS outside the existing Qualtrics functions to make it available to questions on the page.
Add JS to call the matrixProfileTextAbove function to apply it to the Matrix Profile question as follows:
Qualtrics.SurveyEngine.addOnload(function() {
matrixProfileTextAbove(this);
});
To enable custom formatting, the function adds classes for formatting the statement rows and statement cells.
The mpLabelRow class can be used to format the statement rows. Example CSS:
.mpLabelRow { /* add CSS styles here */ }
The mpLabelCell class can be used to format the statement cells. Example CSS:
.mpLabelCell { /* add CSS styles here */ }