Unplanned
Last Updated: 09 Dec 2024 09:58 by ADMIN
We have an Android device with a scanner. The scanner acts as a keyboard wedge and auto types the scanned item (barcode, tags etc.) into the Entry control and simulates the Enter Key being pressed in the background to execute the Completed event. With the .NET MAUI Entry the Completed event is fired, while with Telerik .NET MAUI Entry (RadEntry), the Completed event is not raised.
Unplanned
Last Updated: 09 Dec 2024 09:49 by ADMIN
If you use the Scheduler control inside a Shell app, editing an existing appointment and closing the EditAppointment Dialog leads to an IndexOutOfRangeException on iOS.
Unplanned
Last Updated: 09 Dec 2024 06:02 by ADMIN
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: 06 Dec 2024 12:30 by Zelin
The UI freezes when RadTabView is used as a parent container for RadCollectionView and the CollectionView is scrolled.
Need More Info
Last Updated: 04 Dec 2024 11:45 by Nico
Created by: Nico
Comments: 3
Category: CollectionView
Type: Bug Report
0

See simple example baaaaif/CollectionViewFilterIssue (MainPage.xaml.cs) to reproduce, click hide and show

When items are filtered through a FilterDescriptor they are hidden - correct
Trying to show the previously hidden items they don't appear again as expected - bug

I've used a BooleanFilterDescriptor and a DelegateFilterDescriptor, both don't work.

Stops me from using the RadCollectionView control

 

Completed
Last Updated: 04 Dec 2024 08:21 by Claus
Release 7.0.0 (2024 Q2)
Created by: Vaibhav
Comments: 2
Category: Button
Type: Feature Request
5
Implement a component that can be used as button and can host templated content.
Unplanned
Last Updated: 03 Dec 2024 14:12 by Nick
Created by: Nick
Comments: 0
Category: Calendar
Type: Feature Request
1
Provide a way to override the Calendar navigation commands - add custom logic inside their Execute method, or prevent navigation.
Unplanned
Last Updated: 30 Nov 2024 07:00 by n
when I swipe back from the PreviewAppointmentDialog, to return to the scheduler, I realize that in iOS cannot swipe while on Android the swipe works.
Unplanned
Last Updated: 29 Nov 2024 12:12 by ADMIN

When setting height to the day name label style

<Style TargetType="Label" x:Key="DayNameLabelStyle">
    <Setter Property="HeightRequest" Value="20" />
</Style>

the day names (names of the week days) disappear

 

 
Unplanned
Last Updated: 28 Nov 2024 13:33 by Kelvin
Created by: Kelvin
Comments: 0
Category: Scheduler
Type: Feature Request
0
Add a command that is called when the user taps on the week day in MultiDayView definition of the Scheduler with a parameter that date.
Unplanned
Last Updated: 27 Nov 2024 15:35 by ADMIN
Created by: Nico
Comments: 4
Category: ComboBox
Type: Feature Request
1

At the moment, the SelectedItem is not displayed (as readonly text in the entry text) if it is not present in the ItemSource.I suspect this is by design (but maybe a bug?) Background: In my list there are elements that are readonly, i.e. can correspond to the current selection, but cannot be selected by the user if a change is made.At the moment, the ItemSource has to be cleaned of the readonly elements before it is assigned to the ComboBox.A suggested solution would therefore be: Add a FilterDescriptors property, as in the RadCollectionView. This is taken into account in the selection list, but not for the display of the SelectedItem

Dirty workarround vor the moment:


private void cb_Loaded(object sender, EventArgs e)
{
    if (sender is RadComboBox radComboBox)
    {
        IReadOnlyList<IVisualTreeElement> children = radComboBox.GetVisualTreeDescendants();
        RadEntry entry = children.OfType<RadEntry>().FirstOrDefault();
        //entry.Text = DataContextViewModel.SelectedFieldOptionText;
        entry?.Bind(RadEntry.TextProperty, static (IComboBoxViewModel x) => x.SelectedOptionText, source: DataContextViewModel);
    }
}

Unplanned
Last Updated: 26 Nov 2024 02:44 by Anthony

When updating to Telerik MAUI 8.0.0 and building the app on Android 5.1 the controls that use RadTextInput internally crash

Controls like, DataGrid, RadEntry, ComboBox, AutoComplete, Numeric, Masked

UNHANDLED EXCEPTION:
[MonoDroid] Java.Lang.NoSuchMethodError: no non-static method "Landroidx/appcompat/widget/AppCompatEditText;.getTextCursorDrawable()Landroid/graphics/drawable/Drawable;"
[MonoDroid]    at Java.Interop.JniEnvironment.InstanceMethods.GetMethodID(JniObjectReference type, String name, String signature)
[MonoDroid]    at Java.Interop.JniType.GetInstanceMethod(String name, String signature)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.GetMethodInfo(String method, String signature)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.GetMethodInfo(String encodedMember)
[MonoDroid]    at Java.Interop.JniPeerMembers.JniInstanceMethods.InvokeVirtualObjectMethod(String encodedMember, IJavaPeerable self, JniArgumentValue* parameters)
[MonoDroid]    at Android.Widget.TextView.get_TextCursorDrawable()
[MonoDroid]    at Telerik.Maui.Handlers.RadTextInputHandler.MapCustomCursorColor(RadTextInputHandler handler, IRadTextInput virtualElement)
[MonoDroid]    at Microsoft.Maui.PropertyMapper`2.<>c__DisplayClass5_0[[Telerik.Maui.IRadTextInput, Telerik.Maui.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7],[Telerik.Maui.Handlers.RadTextInputHandler, Telerik.Maui.Core, Version=8.0.0.0, Culture=neutral, PublicKeyToken=5803cfa389c90ce7]].<Add>b__0(IElementHandler h, IElement v)
[MonoDroid]    at Microsoft.Maui.PropertyMapper.UpdatePropertyCore(String key, IElementHandler viewHandler, IElement virtualView)
[MonoDroid]    at Microsoft.Maui.PropertyMapper.UpdateProperties(IElementHandler viewHandler, IElemen

.....

Unplanned
Last Updated: 22 Nov 2024 14:05 by Rich
We need an API through which we can get the currently visible in the viewport items. The API should take into account operations like sorting, filtering and grouping.
Unplanned
Last Updated: 22 Nov 2024 12:37 by ADMIN
there is a color for the text, still the opacity does not change when switching between disabled and normal states and there is a binding for the Entry.IsEnabled property. 
Unplanned
Last Updated: 22 Nov 2024 08:07 by Mauricio
Created by: Mauricio
Comments: 0
Category: CollectionView
Type: Feature Request
1
Provide a pressed visual state.
Unplanned
Last Updated: 20 Nov 2024 15:59 by ADMIN
When binding the CurrentIndex using two way binding mode and using the NavigationButtons to navigate to an item, an index out of range exception occurs. 
Unplanned
Last Updated: 20 Nov 2024 13:10 by ADMIN
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.
Completed
Last Updated: 19 Nov 2024 13:27 by ADMIN
Release 8.0.0 (2024 Q4)
DataGridBorderStyle and DataGridCellStyle classes do not support property binding.
In Development
Last Updated: 19 Nov 2024 06:29 by ADMIN
Scheduled for 2025 Q1
Created by: Daniel
Comments: 7
Category: UI for .NET MAUI
Type: Feature Request
25
Introduce a theme for all controls in the suite.
Planned
Last Updated: 18 Nov 2024 10:00 by ADMIN
Scheduled for 2025 Q1
Created by: Funny
Comments: 3
Category: UI for .NET MAUI
Type: Feature Request
30
Currently Telerik MAUI controls doesn't seem to support Light and Dark Themes(Modes). It will be really helpful to have this feature built in the controls or through styles supported by those controls so that these controls blend in nicely with the Light and Dark Themes supported by the app.
1 2 3 4 5 6