Unplanned
Last Updated: 19 Sep 2024 09:35 by Teddy
Created by: Teddy
Comments: 0
Category: TimePicker
Type: Feature Request
0

Allow for up/down arrows to step up/down the time element with the keyboard cursor. For example, if I have my keyboard cursor on the hours of a time, then pressing up would increase the hour by 1.

Keyboard support for the dropdown... Space to open, tab and/or arrows to cycle through and change the date/time.

 

Unplanned
Last Updated: 18 Sep 2024 13:13 by Srilekha

In MAUI CollectionView when scrolling an item into view, the exact position of the item after the scroll has completed can be specified with the position argument of the ScrollTo methods.

Please provide such option for Telerik MAUI CollectionView inside the ScrollItemIntoView method.

Unplanned
Last Updated: 18 Sep 2024 11:34 by ADMIN
Created by: Matthew
Comments: 3
Category: CollectionView
Type: Feature Request
4

Add support for sticky group headers (iOS, Android)

This feature is available in the ListView control. E.g. On iOS using the built-in CollectionView it can be added this way:

public class CollectionViewPlatformHandler : CollectionViewHandler { /// <inheritdoc /> protected override ItemsViewLayout SelectLayout() { var layout = base.SelectLayout(); if (ItemsView.IsGrouped && layout is UICollectionViewFlowLayout flowLayout) { // Enable sticky section headers. flowLayout.SectionHeadersPinToVisibleBounds = true; } return layout; } }

Add support for scrollable index titles (iOS).

This feature is available in the ListView control. E.g. On iOS using the built-in CollectionView it can be added this way:

    public class CollectionViewPlatformHandler : CollectionViewHandler
    {
        /// <inheritdoc />
        protected override UIView CreatePlatformView()
        {
            var platformView = base.CreatePlatformView();
            if (ItemsView.IsGrouped && ItemsView.ItemsSource is IEnumerable<IGrouping<string, object>> groups && platformView.Subviews[0] is UICollectionView collectionView)
            {
                // Enable index titles.
                collectionView.DataSource = new GroupedCollectionViewDataSource(collectionView.DataSource, groups.Select(q => q.Key));
            }

            return platformView;
        }
        
        private class GroupedCollectionViewDataSource(IUICollectionViewDataSource datasource, IEnumerable<string> sections) : UICollectionViewDataSource
        {
            public override nint NumberOfSections(UICollectionView collectionView) => datasource.NumberOfSections(collectionView);
            public override nint GetItemsCount(UICollectionView collectionView, nint section) => datasource.GetItemsCount(collectionView, section);
            public override UICollectionViewCell GetCell(UICollectionView collectionView, NSIndexPath indexPath) => datasource.GetCell(collectionView, indexPath);
            public override UICollectionReusableView GetViewForSupplementaryElement(UICollectionView collectionView, NSString elementKind, NSIndexPath indexPath) => datasource.GetViewForSupplementaryElement(collectionView, elementKind, indexPath);
            public override string[] GetIndexTitles(UICollectionView collectionView) => sections.ToArray();
        }
    }
 

Note: This is available out-of-the-box on iOS 14 and above for a native UICollectionView. See documentation.

https://developer.apple.com/documentation/uikit/uicollectionviewdatasource/2851455-indextitlesforcollectionview

Unplanned
Last Updated: 18 Sep 2024 11:31 by Matthew
Created by: Matthew
Comments: 0
Category: CollectionView
Type: Feature Request
4

Add an option to scroll fast to elements inside the CollectionView, something like jump list approach.

This feature is available in the iOS UICollectionView https://developer.apple.com/documentation/uikit/uicollectionviewdatasource/2851455-indextitlesforcollectionview

It could be a great addition to the Telerik MAUI RadCollectionView features set.

 
Unplanned
Last Updated: 18 Sep 2024 09:20 by Colt
Currently when the typed DataGrid columns (all columns except TemplateColumn) do not have a PropertyName/DataMemberBinding applied, a misleading exception is thrown and it is difficult to find out what is causing it.
Unplanned
Last Updated: 18 Sep 2024 08:24 by ADMIN
Currently there isn't a direct way to hide the scrollbars in the CollectionView.
Unplanned
Last Updated: 17 Sep 2024 12:23 by Andrew
Created by: Andrew
Comments: 0
Category: Map
Type: Feature Request
0
Markers can be shown at any position on the map by providing latitude and longitude position, and you can set their size, styling and template.
Completed
Last Updated: 17 Sep 2024 11:56 by ADMIN

Hi Team,

Please expose the ScrollViewer, or expose a method on the RadListView that allows the developer to set a Y device-independent vertical position. Setting the Y value will trigger the internal/native scrollview to go to that position without any special animations or manipulation. Just a pure position set.

I need to be able to programmatically scroll to a specific position in the list. Yes, I am aware of the ScrollToItem methods, however that will not work in my case as I explicitly need the Y position (for acceleration and manipulation of the exact position).

As an example, here's how I am currently doing it for a ScrollView:

private async Task AutoScrollAsync()
        {
            while (!(this.ScrollVelocity == 0 || this.ScrollVelocity > 0 && this.IsScrolledToBottom() || this.ScrollVelocity < 0 && this.IsScrolledToTop()))
            {
                await this.scrollView.ScrollToAsync(0, this.CalculateNextScrollY(), false);
                await Task.Delay(ScrollDelay);
            }

            this.StopScrolling();
        }

I am hoping to be able to do the same thing for the RadListView.

Thank you,

Aaron

Completed
Last Updated: 17 Sep 2024 09:33 by ADMIN
Created by: Vaibhav
Comments: 1
Category: ListView
Type: Feature Request
2
 I want to use the TemplateSelector for the group header. 
Unplanned
Last Updated: 12 Sep 2024 12:59 by ADMIN

For example expose vertical text alignment properties, padding, etc.

 

Unplanned
Last Updated: 11 Sep 2024 09:21 by Alex
Makes the KeyboardHelper class public. It is very useful and It would be a nice enhancement to the control's usage. 
Completed
Last Updated: 10 Sep 2024 08:12 by ADMIN
Created by: SturmA
Comments: 2
Category: ListView
Type: Feature Request
1
Provide an option to set corner radius to the ListView item style and selected item style
Completed
Last Updated: 10 Sep 2024 08:07 by ADMIN
You should be able to swipe left or right from any part of the row and have it work, not just a very small unmarked section near each edge;
Completed
Last Updated: 10 Sep 2024 07:55 by ADMIN
Created by: Vaibhav
Comments: 1
Category: ListView
Type: Feature Request
1
Provide event to detect the scrolling.
Completed
Last Updated: 10 Sep 2024 07:52 by ADMIN
Created by: Akesh Gupta
Comments: 1
Category: ListView
Type: Feature Request
1
Provide PullToRefresh functionality about ListView control for Desktop.

If using a touch screen it should behave the same as mobile, if using a mouse, I'd say just let the user click and drag down to refresh.
Completed
Last Updated: 10 Sep 2024 07:48 by ADMIN
Created by: atlanta
Comments: 5
Category: ListView
Type: Feature Request
11

An example with CollectionView:

<CollectionView ItemsSource="{Binding EmptyMonkeys}"
                EmptyView="No items to display" />

Unplanned
Last Updated: 10 Sep 2024 06:40 by ADMIN
Created by: Raymond
Comments: 1
Category: RichTextEditor
Type: Feature Request
1

Please provide a support for a placeholder text in RichTextEditor (an optional text displayed when edited content is empty).

Best if color of this text could be configurable.

Unplanned
Last Updated: 03 Sep 2024 11:35 by ADMIN
Created by: Larry
Comments: 4
Category: Entry
Type: Feature Request
24

I'm looking to replace the Xamarin RadRichTextEditor control in my Maui app. The Maui native Editor control is good but doesn't scroll.

And to be honest, the RadRichTextEditor gave me more trouble than it was worth (I loved the functionality, but it wasn't a good fit for my implementation).

So, adding the appropriate support to RadEntry to make it more of a 'multiline text editor' or even a 'mini word processor' would be awesome.

Unplanned
Last Updated: 02 Sep 2024 16:23 by Ramin
Currently when the user taps outside the non-modal popup, the popup is dismissed. We'd need to provide a way to set focus to input fields in the page without removing/closing the popup.
Unplanned
Last Updated: 30 Aug 2024 10:10 by Riziq
Created by: Riziq
Comments: 0
Category: NavigationView
Type: Feature Request
1

When Flow Direction is changed to right to left, on Android the control does not behave as expected. 

Provide support for right to left. 
On Android there is an issue with the navigation items. 

On WinUI it works

1 2 3 4 5 6