Setting selection for combo box
Hello,
I have a combo box, labeled event type.
Options:
Value Text
0
1 Purchase Ringtone
2 Return Ringtone
3 Purchase Video
4 EOM
I gather the data into:
_global.eventtype = eventtype.value;
All my text fields work fine when filling in the retrieved data. But I want the drop downs to stay selected when they come back to that slide.
For example, they fill out the form, then come back to it later, and its still filled out. RIght now I only figured out how to fill out the text fields.
I tried
eventtype.defaultValue = _global.eventtype;
eventtype.default Value = _global.eventtype;
eventtype.selected = _global.eventtype;
eventtype.selectedValue = _global.eventtype;
I tried everything I could think up pretty much.
If any of you know the trick, I would be very appreciative if you shared it with me.
Thanks,
Cameron
|