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