Hello,
Using .NET MAUI to develop a Windows desktop application.
I have a page where a RadDataGrid gets populated with a list of items.
The columns are:
Column 1 = telerik:DataGridTextColumn
Column 2= telerik:RadNumericInput (usingtelerik:DataGridTemplateColumn)
My client reported an overlooked issue, and I confirm that when using "tab" to go to the next editable cell, which in my case is the next row, it does NOT follow the sequence of the items...
Example:
Clicked on the first item to focus, from item/row 1 goes to 2, then 3 (so far so good) but all the sudden the next focus goes all the way to item/row 11 or something then after that seems to follow a random order which defeats the purpose of using the tab functionality.
For clarification, I am using enter as 'Tab' by implementing a style to the telerik:RadEntry with a
"<Setter Property="ReturnType" Value="Next" />". However, the same behavior happens using the 'Tab' key.
Video of the issue attached
A fix, observation or any workaround would be greatly appreciated!!