Hi , actually it is long term issue, it is here few Telerik versions already, this time it appeared again. Issue is - some telerik controls are working thru http://schemas.telerik.com/2022/xaml/maui namespace but some are not. Have to use clr-namespace:Telerik.Maui.Controls;assembly=Telerik.Maui.Controls . Very annoying. Today after upgrade i have to go thru all source files (xaml) and change it again. Below is example of issue, assume i have 20+ xaml files there... Yes, i did clean, rebuild etc.
Hey Team,
When I defined a RadComboBox, I found there is a default corner on WindowsOS, it is different with MacOS version. I set the CornerRadius="0", The Corner disappeared but the dropdownload list still has a corner.
I didn't attached simple project, You can take a look on Sample Project if you want.
Thanks
Allen
Hey Team,
I have a question want to ask for advice. I'm using a comboBox to do a research functionality。
First I initialed my drop down list with a collection of data. Then I defined SelectionChanged event(convert to command) which updated drop down list options.
When I choice an option, it fired SelectionChanged event. and updated drop down list. after that I saw the selected option didn't show on the TextBox.
I want to know is there a way to show my selected option in Text Box(ComboBox)?
When I debug SelectionChanged event, I found it fired twice.
I attached my example project if you want to take a look.
Thanks
Allen
Hey Team,
I got a question want to ask you about when I added a ComboBox with IsDropDownOpen, OpenOnFocus, ItemsSource, IsEditable, Text properties into a view. As you can see my below code.
<telerik:RadComboBox
IsDropDownClosedOnSelection="False"
ItemsSource="{Binding Items}"
DisplayMemberPath="Name"
OpenOnFocus="False"
ItemsSource="{Binding Items}"
IsEditable="True"
SearchTextPath="Name"
DisplayMemberPath="Name"
IsDropDownOpen="False"
Text="{Binding SearchValue, Mode=TwoWay}"/>
The drop down list always shows me when RadComboBox gets focus. I did more testing on it, I found if we add Text property with TwoWay mode, it always pops up drop down list even though I set the IsDropDownOpen and OpenOnFocus to False.
I want to confirm do you have a way to hide drop down list if we use Text property with TwoWay Mode? As I want to do more search functionality with RadComboBox.
Thanks
Allen
I have vm with property observablecollection, then xaml this
<telerik:RadCartesianChart x:Name="chart" Grid.Row="0" Grid.ColumnSpan="2" BackgroundColor="{StaticResource DarkBg1}">
<telerik:RadCartesianChart.VerticalAxis >
<telerik:CategoricalAxis LabelTextColor="White" LineColor="White" ShowLabels="True" LabelFontSize="10"/>
</telerik:RadCartesianChart.VerticalAxis>
<telerik:RadCartesianChart.HorizontalAxis>
<telerik:NumericalAxis LabelTextColor="White" LineColor="White" ShowLabels="True" LabelFontSize="10">
</telerik:NumericalAxis>
</telerik:RadCartesianChart.HorizontalAxis>
<telerik:RadCartesianChart.Series >
<telerik:BarSeries ValueBinding="MontoVentaTiendaDia"
ShowLabels="True"
LabelFormat="{}{0:N2}"
CategoryBinding="NombreTienda"
ItemsSource="{Binding Ventas}" >
</telerik:BarSeries>
</telerik:RadCartesianChart.Series>
<telerik:RadCartesianChart.Behaviors>
<telerik:ChartTooltipBehavior TriggerMode="Tap" >
</telerik:ChartTooltipBehavior>
</telerik:RadCartesianChart.Behaviors>
<telerik:RadCartesianChart.Palette>
<telerik:ChartPalette>
<telerik:ChartPalette.Entries>
<telerik:PaletteEntry FillColor="#345EA8" StrokeColor="#345EA8" />
</telerik:ChartPalette.Entries>
</telerik:ChartPalette>
</telerik:RadCartesianChart.Palette>
</telerik:RadCartesianChart>
But when change de observablecollection don't change chart, what i'm have to do?
Thanks
Hello, I am trying to set a custom CellEditTemplate for a Date Column so that I can make it edit the time not just the date, but the binding is not working at all.
And it says this error: "Binding: 'Time' property not found on 'Telerik.Maui.Controls.Compatibility.DataGrid.DataGridCellEditContext', target property: 'Telerik.Maui.Controls.RadTimePicker.Time'"
<telerik:DataGridDateColumn PropertyName="Time"
HeaderText="Time">
<telerik:DataGridColumn.CellEditTemplate>
<DataTemplate>
<telerik:RadTimePicker Time="{Binding Time}"></telerik:RadTimePicker>
</DataTemplate>
</telerik:DataGridColumn.CellEditTemplate>
</telerik:DataGridDateColumn>