This question is locked. New answers and comments are not allowed.
Hi,
I use the following style for a combo box:
| <Style TargetType="telerikInput:RadComboBox" x:Key="comboBoxStyle"> |
| <Setter Property="ItemTemplate"> |
| <Setter.Value> |
| <DataTemplate> |
| <telerikInput:RadComboBoxItem IsEnabled="{Binding Path=IsEnabled}"> |
| <TextBlock Text="{Binding VendorName}" ToolTipService.ToolTip="{Binding Path=Tooltip}" /> |
| </telerikInput:RadComboBoxItem> |
| </DataTemplate> |
| </Setter.Value> |
| </Setter> |
| </Style> |
The disabled items appear grayed out in the but I still can select them, is there any way that disable items can't won't be selectable ?
Thank you,