Hello.
Using MAUI Trial 2.3.0
Visual Studio Community 2022 for Mac Preview Version 17.4 Preview (17.4 build 2339)
Checked in iOS 16.0 Simulator.
Disabled combobox does not react on touch on the dropdown arrow. But it reacts on the tap on the text part and allow to change selection in the list.
Tried to set OpenOnFocus to false - same behaviour
<DataTemplate x:Key="ComboBoxTemplate" x:DataType="{x:Type models:JDFModel}">
<telerik:RadBorder Style="{StaticResource GeneralBorderStyle}">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*" />
<ColumnDefinition Width="2*" />
<ColumnDefinition Width="*" />
</Grid.ColumnDefinitions>
<telerik:RadHighlightLabel Grid.Column="0" Text="{Binding Path=DisplayName}" Style="{StaticResource RegularLabelStyle}" />
<telerik:RadHighlightLabel Grid.Column="2" Text="{Binding Path=IsEnabled, Converter={StaticResource BoolToStringConverter}, StringFormat='{0} CoB'}" Style="{StaticResource RegularLabelStyle}" />
<telerik:RadComboBox Grid.Column="1" Style="{StaticResource RegularComboBoxStyle}" x:Name="box"
SelectionMode="Single"
ItemsSource="{Binding Path=ItemsSource}"
IsEnabled="{Binding Path=IsEnabled}"
SelectedItem ="{Binding Converter={StaticResource SelectedValueToItemConverter}, ConverterParameter={x:Reference box}, Path=SelectedValue, Mode=TwoWay, UpdateSourceEventName=SelectionChanged}" />
</Grid>
</telerik:RadBorder>
</DataTemplate>