Unplanned
Last Updated: 07 Jan 2026 10:51 by ADMIN
Benjamin
Created on: 07 Jan 2026 09:08
Category: DataGrid
Type: Bug Report
9
DataGrid: [iOS] [Android] Numeric column requires extra tap to show keyboard when in edit mode

When the numerical column enters edit mode, in order to display the keyboard you need to tap one more time.

Outside of the datagrid, when the numeric input control gets focused, the keyboard appears.

1 comment
ADMIN
Didi
Posted on: 07 Jan 2026 10:51

Workaround:

Use CellContentTemplate and add a numeric control inside the template with input transparency set to false. This will allow direct editing the cell. when tapping on the cell the control gets focused and keyboard appears.

<telerik:RadDataGrid x:Name="DataGrid" UserEditMode="Cell"
                        ItemsSource="{Binding Items}"
                        AutoGenerateColumns="False">
	<telerik:RadDataGrid.Columns>
		<telerik:DataGridNumericalColumn x:Name="numeric" PropertyName="Id" HeaderText="ID">
			<telerik:DataGridNumericalColumn.CellContentTemplate>
				<DataTemplate>
					<telerik:RadNumericInput InputTransparent="False"
										Value="{Binding Id}" />
				</DataTemplate>
			</telerik:DataGridNumericalColumn.CellContentTemplate>
		</telerik:DataGridNumericalColumn>
	</telerik:RadDataGrid.Columns>
</telerik:RadDataGrid>

Regards,
Didi
Progress Telerik