I'm creating a survey application where I use RadioButtons as answer choices. Because my answer types are dynamic, meaning that they can be one word, like 'True' or an entire paragraph of text, I need a way to display the answer text in the RadioButton label so it can wrap text as necessary.
I've tried creating an itemRenderer that contains a RadioButton and a TextArea in an HBox, and placed it in a List control. This works until I start scrolling through the list... the RadioButtonGroup loses the selected index. What I would like to do is just extend the RadioButton class and change it's Label property so that it can wrap text. Is that possible? Any help is much appreciated! TIA, MC

