Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added new kb article combobox-prevent-numeric #2898

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
65 changes: 65 additions & 0 deletions knowledge-base/combobox-prevent-numeric.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,65 @@
---
title: How to Restrict Numeric Input in ComboBox
description: Learn how to prevent users from typing numbers in a Telerik UI for Blazor ComboBox.
type: how-to
page_title: How to Prevent Numeric Input in Blazor ComboBox
slug: combobox-kb-prevent-numeric
tags: combobox, blazor, input, numeric
res_type: kb
ticketid: 1682510
---

## Environment

<table>
<tbody>
<tr>
<td>Product</td>
<td>ComboBox for Blazor</td>
</tr>
</tbody>
</table>

## Description

I want to restrict typing numbers in the [`ComboBox`](slug:components/combobox/overview) component.

## Solution

To prevent users from entering numbers in the ComboBox:

1. Wrap the component in an HTML element and use the `onkeydown` event to capture every keystroke.
2. Implement a JavaScript function that prevents the numbers.

Below is the implementation:

`````Razor
<div onkeydown="preventNumbers(event)">
<TelerikComboBox Data="@ComboData"
Value="@ComboValue"
ValueChanged="@( (string newValue) => OnComboValueChanged(newValue) )"
Width="300px">
</TelerikComboBox>
</div>

<script suppress-error="BL9992">
function preventNumbers(event) {
if (event.key >= '0' && event.key <= '9') {
event.preventDefault();
}
}
</script>

@code {
private string? ComboValue { get; set; }

private List<string> ComboData { get; set; } = new List<string> {
"Manager", "Developer", "QA", "Technical Writer", "Support Engineer"
};

private void OnComboValueChanged(string newValue)
{
ComboValue = newValue;
}
}
`````
Loading