Skip to content

Commit 6294708

Browse files
docs(numerictextbox): Enahnce Format parameter description (#2732)
Co-authored-by: Dimo Dimov <961014+dimodi@users.noreply.github.com>
1 parent 49d1933 commit 6294708

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

components/numerictextbox/overview.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ The Blazor Numeric TextBox allows you to define your desired custom format throu
8686
| `Autocomplete` | `string` | The [`autocomplete` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Attributes/autocomplete) on the `<input />` element. |
8787
| `DebounceDelay` | `int` <br /> (`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. |
8888
| `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. |
89-
| `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) |
89+
| `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). |
9090
| `Id` | `string` | The `id` attribute on the `<input />` element. |
9191
| `InputMode` | `string` | The [`inputmode` attribute](https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/inputmode) of the `<input />` element. |
9292
| `Max` | `TValue`* <br /> (`T.MaxValue`) | The maximum value the input can accept. Must match the `Value` type. |

0 commit comments

Comments
 (0)