Millisecond Forums

Size of "other" category box (radiobuttons, checkboxes)

https://forums.millisecond.com/Topic19976.aspx

By Korsch - 10/27/2016

Hello there,
is there a possibility to change the preset size of the text box whenever you use the "other" category of radiobuttons or checkboxes. The preset size doesn't allow many characters, especially if you use a bigger font...
Thanks
By Dave - 10/28/2016

Yes, the way to do this is to reference a separately configured <textbox> element in the /other attribute:

<surveypage mypage>
/ questions = [1=myrb]
</surveypage>

<radiobuttons myrb>
/ options = ("A", "B", "C")
/ other = othertb
</radiobuttons>

<textbox othertb>
/ caption = "other"
/ textboxsize = (25%, 20%)
</textbox>
By Korsch - 10/31/2016

Great - thanks :)