Display Text entry field to the right of the question | XM Community
Skip to main content
Solved

Display Text entry field to the right of the question

  • September 28, 2018
  • 2 replies
  • 16 views

Forum|alt.badge.img+3
Hi All - I'm using Multiple Choice question with a text entry, which I need to display to the right of the question. On another post I found a similar post with code that moved the text entry box before the question - I need to flip that order (question then text entry box). Any idea how to alter the code below? Thank you!! var QID = this.questionId; var QIDOtherLabel = jQuery("#" + QID).find(".TextEntryBox").siblings().attr("id"); jQuery("[id='" +QIDOtherLabel+"']").append(jQuery("#" + QID).find(".TextEntryBox")); jQuery("[id='" +QIDOtherLabel+"']").css("padding-top","30px"); jQuery("[id='" +QIDOtherLabel+"']").css("padding-bottom","30px"); jQuery("#" + QID).find(".TextEntryBox").css("float","unset");

Best answer by TomG

@Multimedia_Team - In the last line of code try changing "unset" to "none".
View original

2 replies

PeeyushBansal
Level 6 ●●●●●●
Forum|alt.badge.img+39
  • Level 6 ●●●●●●
  • 1144 replies
  • September 28, 2018
When you add text entry box for any option it automatically appears on right of the text.

TomG
Level 8 ●●●●●●●●
Forum|alt.badge.img+27
  • Level 8 ●●●●●●●●
  • 5934 replies
  • Answer
  • September 28, 2018
@Multimedia_Team - In the last line of code try changing "unset" to "none".

Leave a Reply