Help with displaying Textbox next to choice

  • 21 June 2018
  • 1 reply
  • 1 view

Hello,

 

I have been tasked with creating a Nintex form that allows a user to pick out of a choice control with 50+ employees and put there initials along side of who that person has ticked off. Now i have created the form and in designer it is all lined up properly and when previewing it also is correctly aligned. When i publish and save and go to add a new item it is completely misaligned. Please help me. I have tried changing padding, margins, creating custom classes and nothing seems to work. I'm using IE 10 as its mandatory. I have also tried the !important after an attributes value.


1 reply

Userlevel 6
Badge +16

You could try using some javascript.

You may use the appendTo function (which adds to the end of the element):

$("#youtTextBox1Parent").appendTo("#TheDIVOfCheck1");

You should see how to access to the conatiner control ("youtTextBox1Parent" in my sample)

Reply