[api-dev] Re: missing setSelectedItem() method in XComboBox interface

2011-10-15 Thread Bernard Marcelly
Hi Gerardo, There are two ways to select an item of a ComboBox. From the model of the ComboBox, set the Text property to the value that you want to select: myControl.Text = yellow From the view of the control, use the setText() method: myControlView.setText(yellow) Regards Bernard

[api-dev] Re: missing setSelectedItem() method in XComboBox interface

2011-10-15 Thread Gerardo Gómez
Oh!, thank you a lot, i haven't seen that method. Now i know i don't need to create a bug ticket. On Sat, Oct 15, 2011 at 7:44 AM, Bernard Marcelly marce...@club-internet.fr wrote: Hi Gerardo, There are two ways to select an item of a ComboBox. From the model of the ComboBox, set the Text