Millisecond Forums

drop-down values disappearing

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

By patruvius - 3/12/2013

The problem only seems to occur in IE and  works as expected in Firefox and Chrome.


The link if that helps is:


http://wsww01.csumain.csu.edu.au/psysurveys/sm/index.asp


I have done a search of the forum.


The script does not use a /window parameter.


Thank you,


Patrick

By Dave - 3/12/2013

While there is certainly a bug involved, you should be fine if you define a proper /listsize in your <dropdowns>:


<dropdown sex>
/ caption = "Sex"
/ options = ("female", "male")
/ listsize = (15%,10%)
</dropdown>

<textbox age>
/ caption = "Age"
/ mask = positiveinteger
/ range = (7, 110)
</textbox>

<surveypage demographics>
/ caption = "Please answer the following demographic questions"
/ fontstyle = ("Verdana", -14, true, false, false, false, 5, 0)
/ questions = [1=sex; 2=age]
</surveypage>

<survey demographics>
/ pages = [1=demographics]
/ responsefontstyle = ("Verdana", -12, false, false, false, false, 5, 0)
/ itemfontstyle = ("Verdana", -13, false, false, false, false, 5, 0)
/ itemspacing = 2%
/ showpagenumbers = false
</survey>