Default button selection on a radioCollection?

Default button selection on a radioCollection?

Anonymous
Not applicable
320 Views
1 Reply
Message 1 of 2

Default button selection on a radioCollection?

Anonymous
Not applicable
Hi,

In the window below, I'd like to select the radio button "none" by default. I tried using :

"radioCollection -sl 1;"

but am not having any luck.


window;
rowLayout -numberOfColumns 3 -width 250;
radioCollection;
radioButton -label "None";
radioButton -label "One";
radioButton -label "Two";
showWindow;

Any suggestions? Much thanks!

Tony
0 Likes
321 Views
1 Reply
Reply (1)
Message 2 of 2

Anonymous
Not applicable
window;
rowLayout -numberOfColumns 3 -width 250;
radioCollection;
radioButton -sl -label "None";
radioButton -label "One";
radioButton -label "Two";
showWindow;
0 Likes