You can try editing a third page or a line later, editing the larger number of lines, and then editing the previous line, which makes it easy to reproduce the problem.
ADMIN
Yana
Posted on:22 Jun 2021 11:39
Hello,
Thank you for sharing the code.
I managed to reproduce the described erroneous behavior on Android rather occasionally. Do you have any specific steps which leads to resetting the editing?
I will also continue researching the scenario and the reasons behind the issue.
Regards,
Yana
Progress Telerik
Virtual Classroom, the free self-paced technical training that gets you up to speed with Telerik and Kendo UI products quickly just got a fresh new look + new and improved content including a brand new Blazor course! Check it out at https://learn.telerik.com/.
x
Posted on:15 Jun 2021 11:43
Code.User:
public class User { public int IsClick { get; set; } public string Name { get; set; } public DateTime time { get; set; } }
public MainPage() { InitializeComponent(); var data = new List<Code.User>(); for (int i = 0; i < 150; i++) { data.Add(new Code.User { IsClick = i % 2, Name = "123/" + i, time = DateTime.Now }); } this.dataGrid.ItemsSource = data; }
ADMIN
Yana
Posted on:14 Jun 2021 14:25
Hello,
Thank you for sending the video.
I see there is a problem with editing the cells, still, I would need a little bit more information on the exact scenario, so I can try to reproduce it on my side. Would it be possible to send me the DataGrid definition as well as the xaml page it is placed into?