In Development
Last Updated: 22 Apr 2024 12:05 by ADMIN

Add the RadRangeSlider, or RadSlider inside a ScrollView, for example at the end of the ScrollView. Then start scrolling the content inside the ScrollView. Try sliding the thumb of the RadRangeSlider or RadSlider, The thumb locks and will no longer move. The issue happens only on Android and iOS. 

On Android you can unlock the thumb by tapping on it, while on iOS there isn't an option, the thumb does not move.

In Development
Last Updated: 19 Apr 2024 09:13 by ADMIN
If I use RadCombBox on a ContentPage, this page is never released - this happens only on Android.
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 7.0.0 (2024 Q2)

When selecting MonthView from the 3-dot menu on the Scheduler component, the app hangs on iOS. 

To workaround the issue add the following to the Page where the Scheduler resides:

xmlns:ios="clr-namespace:Microsoft.Maui.Controls.PlatformConfiguration.iOSSpecific;assembly=Microsoft.Maui.Controls"
ios:Page.UseSafeArea="True"

In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
When you have a DataGrid initially grouped with RowDetails enabled to present additional data, the app crashes when scrolling through the data on Windows.
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
If the DataGrid has two or three columns, and the device is rotated horizontally, the last column header is not fully rendered.
In Development
Last Updated: 15 Apr 2024 13:40 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
Created by: Gabriel
Comments: 0
Category: DataGrid
Type: Bug Report
1
Reordering DataGridDrawingColumn by dragging their column headers around don't reorder the cells too. The cells keep the position before the reordering
In Development
Last Updated: 15 Apr 2024 11:56 by ADMIN

Expose command that executes when checkbox state changes.

Currently I am using EventToCommandBehavior:

 

    <VerticalStackLayout>
        <telerik:RadCheckBox x:Name="checkbox">
            <telerik:RadCheckBox.Behaviors>
                <telerik:RadEventToCommandBehavior EventName="IsCheckedChanged" Command="{Binding CheckedCommand}" />
            </telerik:RadCheckBox.Behaviors>
        </telerik:RadCheckBox>
    </VerticalStackLayout>

 

 

public class ViewModel : NotifyPropertyChangedBase
{
    public ViewModel()
    {
        this.CheckedCommand = new Command<IsCheckedChangedEventArgs>(this.CheckBoxUserCommand);
    }

    private void CheckBoxUserCommand(IsCheckedChangedEventArgs obj)
    {
        // logic here:
    }

    public ICommand CheckedCommand { get; set; }  
}

 

 

 

In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
I want to achieve the dropdown size dynamically based on the item count. I would also like to set a maximum height, so if more items are loaded, the dropdown should be scrolled to that size.
In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
In Windows, when I press the up key or the down key while the data grid is on edit mode, the scroll bar moves even though it shouldn't.

In view mode, the scroll bar of the data grid moves only when the selected item is the first or last visible item in the display area of the data grid. But in edit mode, it moves regardless and it moves a lot more than usual.

I need a way for the scrollbar to behave the same for view and edit modes for a requirement in my project.
In Development
Last Updated: 15 Apr 2024 10:13 by ADMIN
Scheduled for 7.0.0 (2024 Q2)
Created by: PalmSens
Comments: 0
Category: TabView
Type: Feature Request
3
The TabView only supports unbound mode and there is no way to bind a collection of items from the view model to display as tabviewitems
In Development
Last Updated: 12 Apr 2024 08:03 by ADMIN
There is a Debugger.Break in two spots in IndexStorage.cs (OffsetFromIndex and IndexFromOffset methods) which causes the application to constantly break into Telerik code and makes it difficult to debug the app. 
In Development
Last Updated: 29 Mar 2024 07:42 by ADMIN
Created by: Ernst
Comments: 1
Category: Accordion
Type: Bug Report
0

When we set a corner radius for the header the background is overlapping the border so header will not have rounded corners.

    <Style TargetType="telerik:AccordionItemHeader">

        <Setter Property="BackgroundColor" Value="Blue" />

        <Setter Property="BorderColor" Value="Red" />

        <Setter Property="BorderThickness" Value="2" />

        <Setter Property="CornerRadius" Value="8" />

    </Style>

</telerik:AccordionItem.Resources>

 


In Development
Last Updated: 18 Mar 2024 08:34 by ADMIN
Text in specific pdf files is not visible in the viewer.
The text is not visualized due to the negative value for font size. 
In Development
Last Updated: 14 Mar 2024 14:16 by ADMIN

When binding StringFormat to a NumericInput and the Format is set (or changed) after the value is set, the value is not displayed in the correct format. Only if you click inside the NumericInput and then leave it, the value is displayed with the correct format. But that’s not working for a read-only NumericInput.