Unplanned
Last Updated: 14 Oct 2024 18:57 by Alan

Currently the group descriptors provide a SortOrder property, so the groups are sorted alphabetically in descending or ascending order.  We would need to cover the following scenarios:

- allow certain groups to be ordered at the top, possibly by specifying an comparer or a separate group sort property.

- show the groups in order the corresponding items appear in the ItemsSource.

Under Review
Last Updated: 14 Oct 2024 15:39 by ADMIN
Created by: Itzik
Comments: 2
Category: UI for .NET MAUI
Type: Bug Report
1

Our product is also in use in Hebrew language (RTL) and i noticed that hebrew letters are not shown in the RadDataGrid.

I assume its a but since in other controls i use i havnt encountered this issue (yet).

 

 

Please please fix...
This is very important for us.

Many thanks in advance!

Unplanned
Last Updated: 14 Oct 2024 10:24 by ADMIN

When increasing the system font size to a larger vale, the numbers in the date and time picker are too big but the height of the items do not change. 

 

 

 

Unplanned
Last Updated: 11 Oct 2024 20:36 by Todor
In WPF ChartView there is a TickOrigin property, provide such in MAUI Chart control.
In Development
Last Updated: 11 Oct 2024 06:36 by ADMIN

When setting BorderBrush, BorderThickess, FocusedBorderBrush and FocusedBorderThickness do not apply on the entire entry control, they apply only on bottom. 

<VerticalStackLayout>
    <telerik:RadEntry Text="Hello World" TextColor="DarkRed" 
                        Background="Wheat"
                        FocusedBorderBrush="Yellow"
                        FocusedBorderThickness="10"
                        x:Name="entry" 
                        BorderBrush="DarkRed"
                        BorderThickness="8"
                        CornerRadius="5,7,7,5"
                        WidthRequest="150"/>
</VerticalStackLayout>

And the result:


 

Workaround: 

Place the entry in a RadBorder:

<telerik:RadBorder BorderColor="Red" CornerRadius="5,7,7,5" BorderThickness="4,4,4,4">
              <telerik:RadEntry Text="Hello World" TextColor="DarkRed" Background="Wheat" x:Name="entry" /> </telerik:RadBorder>

Unplanned
Last Updated: 10 Oct 2024 08:34 by ADMIN
Created by: Kevin
Comments: 1
Category: UI for .NET MAUI
Type: Feature Request
0
When using a screen reader on both Android and iOS devices, the reader will not navigate to tabs not currently visible on the screen.  It will navigate through each visible tab, then move to the content of the RadTabView.  It should instead navigate through each available tab first.
Unplanned
Last Updated: 09 Oct 2024 20:29 by Yana
Currently when the validation in the DataForm is implemented through validation attributes in the ViewModel, such as "Required", "Range", etc, , the validation error message is provided by the attribute itself. If you have not specified your own error message explicitly, a default one is provided by the .NET framework. The expected behavior is, in case no ErrorMessage is provided in the attribute , the Telerik LocalizationManager default error messages to be used.
Unplanned
Last Updated: 09 Oct 2024 08:28 by Kevin

I would like to bind colors with DynamicResource syntax for the Gauge ranges, for example:

<telerik:GaugeRange Color="{DynamicResource PrimaryColor}"
                                   From="0"
                                   To="100" />

Duplicated
Last Updated: 09 Oct 2024 08:11 by ADMIN
Created by: Raymond
Comments: 4
Category: PDFViewer
Type: Feature Request
3

Hello,

Id would be great having basic editing functionalities in MAUI PDFViewer as you offer in WPF version.
Especially we're interested in having ability to add text and basic shape annotations.

Best Regards,
Raymond

Unplanned
Last Updated: 08 Oct 2024 11:51 by Teddy
Having a DataGrid inside RowDetails. When sorting the control, the control does not resize as expected. 
working on WinUI. 
Unplanned
Last Updated: 08 Oct 2024 06:16 by Michael

I tried to implement the toolbar for the PDF viewer, I'm getting stray hyphens added into the toolbar UI on left and right when overflow mode is set to Scroll.

The behavior also occurs in ImageEditorToolbar and RichTextEditorToolbar.

In Development
Last Updated: 07 Oct 2024 13:29 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
Created by: Rodrigo
Comments: 0
Category: CollectionView
Type: Feature Request
2

Hi Team,

Please consider adding a way to cancel a group's expand/collapse action when the user taps on the group header.

For example, through a GroupTapping event handler that fires just before GroupTapped, and we can execute logic that prevents the operation:

private void RadCollectionView_OnGroupTapping(object sender, RadTappingEventArgs<GroupContext> e)
{
    if (e.Data.Key.ToString() == "GroupToStayPermanentlyExpanded")
    {
        e.Cancel();
    }
}


// which uses this imaginary event args with Cancel method
public class RadTappingEventArgs<T>(T data) : RadTappedEventArgs<T>(data)
{
    public void Cancel()
    {
        // prevents GroupTapped event
    }
}

Thank you,

Rodrigo

In Development
Last Updated: 07 Oct 2024 13:29 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
In Development
Last Updated: 07 Oct 2024 13:29 by ADMIN
Scheduled for 8.0.0 (2024 Q4)
If you type, for example, `3.3` into the numeric input, then press the backspace once, this becomes `3` instead of `3.`.
Unplanned
Last Updated: 04 Oct 2024 07:49 by Andrew
I have overridden the CreateGroupDescriptor() method to apply custom grouping on a column using the built-in grouping. However it seems I cannot get information whether grouping on this column is applied. I checked that IsGrouped and CanGroupBy properties are internal. 
Unplanned
Last Updated: 02 Oct 2024 19:36 by ADMIN
Created by: William
Comments: 2
Category: Scheduler
Type: Feature Request
1
Provide an event raised when an existing appointment is updated.
Unplanned
Last Updated: 02 Oct 2024 13:03 by Shobana
Just using .UseTelerik(), hebrew resource strings do not load properly.
Unplanned
Last Updated: 02 Oct 2024 12:41 by ADMIN

Issue description:

When the grid contains, after filtering out ,no rows the "Empty template" is not used/displayed.

Tested on Windows,  with "Telerik_UI_for_dot_NET_Maui_7_1_0_Dev\Examples\ControlsSamples", Example "Empty Template".

Steps to reproduce:

  1. Open example  "Empty Template"
  2. In "Configuration" set "Items source" to "Non-empty collection"
  3. Set filter in "Order Id" to "Is equal to" = 999

Expected behavior:

Display/Use "Empty template" when there are no visible records.

...or to make it more consistent with the current implementation - add new option "ItemsSourceNullOrEmptyOrFilteredOut" to the enum "EmptyContentDisplayMode":


namespace Telerik.Maui.Controls;
//
// Summary:
//     Defines the modes for displaying empty content.
public enum EmptyContentDisplayMode
{
    //
    // Summary:
    //     Displays the empty content view only when the ItemsSource is null.
    ItemsSourceNull,

    //
    // Summary:
    //     Displays the empty content view when ItemsSource is null or when the source is
    //     empty (has zero items).
    ItemsSourceNullOrEmpty,
    
+    //
+    // Summary:
+    //     Displays the empty content view when ItemsSource is null or when the source is
+    //     empty (has zero items) or when all items are filtered out. (either by filter or by search)
+    ItemsSourceNullOrEmptyOrFilteredOut
}    


Best regards,

Peter

Unplanned
Last Updated: 02 Oct 2024 07:30 by Peter
When the DataGrid contains no rows and the horizontal scrollbar is visible - scrolling to the right paints a white area over column headers.
Unplanned
Last Updated: 02 Oct 2024 05:44 by Jayward
There is a memory leak in the CollectionView on iOS/MacCatalyst - when the CollectionView control is on the page, the page does not dispose when GC runs. Same behavior happens with the RadListview.
1 2 3 4 5 6