This is a migrated thread and some comments may be shown as answers.

Select with mouse not working

2 Answers 160 Views
ComboBox
This is a migrated thread and some comments may be shown as answers.
Andrew
Top achievements
Rank 2
Andrew asked on 24 Nov 2016, 12:56 PM

I have a very simple RadComboBox but you cannot select an item with the mouse it only accepts a different item by pressing enter!!!

I've found there is a tiny, perhaps 1 pixel border around the edge of the ComboBoxItem, where you can click with the mouse and the selection works. But this is totally unacceptably and far too fiddly. How can I get this most basic functionality working?

Andrew

2 Answers, 1 is accepted

Sort by
0
Andrew
Top achievements
Rank 2
answered on 24 Nov 2016, 01:16 PM

Ok I've worked it out...

This works

<telerik:RadComboBox  Width="200">
 <telerik:RadComboBoxItem Content="Option 1"/>
 <telerik:RadComboBoxItem Content="Option 2"/>
 <telerik:RadComboBoxItem Content="Option 3"/>
</telerik:RadComboBox>

But using CombBoxItems does not work unless you click on the one pixel border.

<telerik:RadComboBox  Width="200">
 <ComboBoxItem Content="Option 1"/>
 <ComboBoxItem Content="Option 2"/>
 <ComboBoxItem Content="Option 3"/>
</telerik:RadComboBox>

0
Nasko
Telerik team
answered on 25 Nov 2016, 08:10 AM
Hi Andrew,

It is expected RadComboBox to behave unexpected when working with the native ComboBoxItem. In order to make everything work as expected we suggest you to stick with the approach of using RadComboBoxItems.

If you have any additional concerns please, let us know.

Regards,
Nasko
Telerik by Progress
Telerik UI for WPF is ready for Visual Studio 2017 RC! Learn more.
Tags
ComboBox
Asked by
Andrew
Top achievements
Rank 2
Answers by
Andrew
Top achievements
Rank 2
Nasko
Telerik team
Share this question
or