This is a migrated thread and some comments may be shown as answers.

Keyboard not working on entry inside RadDataGrid

1 Answer 161 Views
DataGrid
This is a migrated thread and some comments may be shown as answers.
Ivan
Top achievements
Rank 1
Ivan asked on 24 Sep 2020, 08:59 PM

Hi, i'm working with RadDataGrid using DataGridTemplateColumn to customize some Columns on Grid

this is my implementation

listViewOrder.Columns.Add(new DataGridTemplateColumn
{
    HeaderText = "Req. Mts",
    SizeMode = DataGridColumnSizeMode.Auto,
    CellContentTemplate = new DataTemplate(() => {
        Entry entry = new Entry();
        entry.FontSize = 16;
        entry.Keyboard = Keyboard.Numeric;
        entry.SetBinding(Entry.TextProperty, "RequiredQuantity");

        /** some code to implement image**/
        return entry;
    })
});

The code works on all iOS devices and also on some android devices, but on many others the keyboard does not allow typing inside the Entry element.

May be any trouble with my code that causes this issue?

Please help

1 Answer, 1 is accepted

Sort by
0
Didi
Telerik team
answered on 25 Sep 2020, 07:13 AM

Hi Ivan,

Thank you for the provided code and image.

I have tested the scenario and I cannot reproduce the issue on my side. The code you have provided seems okay. 

What I can suggest is set InputTransparent to false to the entry control. I have attached my test project for reference. Please download it and test whether the issue can be reproduced in it.  If not please send us a sample project, or modify the attached one, so the issue can be easily reproduced. Note that you will need to open a support ticket and attach the project there,  as in the forum only image attachments are allowed.   

Additional information:
- on which Android devices the issue can be reproduced?

Regards,
Didi
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/.

Tags
DataGrid
Asked by
Ivan
Top achievements
Rank 1
Answers by
Didi
Telerik team
Share this question
or