Text Essay box won't allow space bar | XM Community
Skip to main content

Text Essay box won't allow space bar

  • October 20, 2022
  • 2 replies
  • 38 views

Forum|alt.badge.img+1

I have several text (essay) boxes at the end of my survey. Qualtrics won't allow a space bar as entry. The boxes work normally during preview, but in production when people type their response the space bar isn't allowed and the words must all run together.
What gives? Any advice?

2 replies

Deepak
QPN Level 8 ●●●●●●●●
Forum|alt.badge.img+46
  • 1555 replies
  • October 21, 2022

mhv
Try commenting out the key32 with the below code, apply it on the question where you are facing issue.
Qualtrics.SurveyEngine.addOnload(function() {
var qid = this.questionId;
document.onkeydown = function(event) {
console.log('keydown',event);
if (event.which == 32) {
return true;
}
}
});
If it still persists try raising it to Q support
Hope it helps!


Forum|alt.badge.img+1
  • Author
  • 7 replies
  • October 21, 2022

Thank you Deepak!