PlaceHolder radzen numeric not displayed

Hello,
I have set placeholder value for a Radzen numeric control as shown here


but it does not display on the page. Kindly advise

What's the generated code? Works normally on our demo:

image

        <div style="display: inline-flex; margin-left: 0px; margin-right: 0px; width: 248px" class="row">
          <RadzenNumeric AutoComplete="false" Placeholder="From A/c" ShowUpDown="false" style="width: 140px" @bind-Value="@AcNoFr" Name="AcNoFr">
          </RadzenNumeric>
        </div>
        <div style="display: inline-flex; margin-left: 0px; margin-right: 0px; width: 218px" class="row">
          <RadzenNumeric AutoComplete="false" Placeholder="To A/c" ShowUpDown="false" style="width: 140px" @bind-Value="@AcNoTo" Name="AcNoTo">
          </RadzenNumeric>
        </div>

Placeholder is shown when there is no value.

1 Like

Thanks for the tip. Issue resolved by setting the default numeric values from 0 to null
image