From 62947087291b21046d490ae2359a596cf3b297da Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 27 Jan 2025 08:50:47 +0200 Subject: [PATCH] docs(numerictextbox): Enahnce Format parameter description (#2732) Co-authored-by: Dimo Dimov <961014+dimodi@users.noreply.github.com> --- components/numerictextbox/overview.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/numerictextbox/overview.md b/components/numerictextbox/overview.md index 9b34ae7b3..a6d50c8ad 100644 --- a/components/numerictextbox/overview.md +++ b/components/numerictextbox/overview.md @@ -86,7 +86,7 @@ The Blazor Numeric TextBox allows you to define your desired custom format throu | `Autocomplete` | `string` | The [`autocomplete` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) on the `` element. | | `DebounceDelay` | `int`
(`150`) | The time in milliseconds between the last typed symbol and the value update. Use it to balance between client-side performance and number of database queries. | | `Decimals` | `int` | The number of allowed decimal places during typing. Takes effect only while the input is focused. The default value depends on the culture. | -| `Format` | `string` | The number format when the input is not focused. Read more at [Standard Numeric Format Strings in .NET](https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings) | +| `Format` | `string` | The number format when the input is not focused. Read more about .NET format strings at [Standard Numeric Format Strings](https://docs.microsoft.com/en-us/dotnet/standard/base-types/standard-numeric-format-strings) and [Custom Numeric Format Strings](https://learn.microsoft.com/en-us/dotnet/standard/base-types/custom-numeric-format-strings). | | `Id` | `string` | The `id` attribute on the `` element. | | `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the `` element. | | `Max` | `TValue`*
(`T.MaxValue`) | The maximum value the input can accept. Must match the `Value` type. |