mirror of
https://github.com/radzenhq/radzen-blazor.git
synced 2026-07-08 18:16:08 +00:00
10 lines
562 B
Plaintext
10 lines
562 B
Plaintext
<div class="rz-p-12 rz-text-align-center">
|
|
<RadzenNumeric TValue="double" Format="#.0000" @bind-Value=@value InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "enter value" }})" />
|
|
<RadzenNumeric TValue="double" Format="c" @bind-Value=@value InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "enter value" }})" />
|
|
<RadzenNumeric TValue="double" Format="### m2" @bind-Value=@value InputAttributes="@(new Dictionary<string,object>(){ { "aria-label", "enter value" }})" />
|
|
|
|
</div>
|
|
|
|
@code{
|
|
double value = 0.0;
|
|
} |