Setting Default Selected Item in a Combo Box
When using a combo box, how can I set it to display the currently selected item by default? For example, if the default is the first item, which is "1", what should I do to have the combo box show "7" as the currently selected item by default, as shown in the image below? a = {"1", "2", "3", "4", "5", "6", "7", "8", "9", "0"};
New Window( "Test",
testCB = Combo Box( a, )
);