NumericTextBox Binding Fails

0 Answers 11 Views
NumericTextBox
Joel
Top achievements
Rank 3
Bronze
Iron
Iron
Joel asked on 20 Jan 2026, 09:43 PM
Why won't my numeric text box bind?


<TelerikWindow Visible="@ShowEditPopup"
               Modal="true"
               Draggable="true"
               Resizable="false"
               MaxWidth="350px">

    <WindowTitle>Edit Method</WindowTitle>
    <WindowContent>
        <div>
            <label>Description:</label>
            <TelerikTextBox @bind-Value="@EditingMethod.Description" />
        </div>
        <div>
            <label>Is Run:</label>
            <TelerikCheckBox @bind-Value="@EditingMethod.IsRun" />
        </div>
        <div>
            <label>Run Frequency Minutes:</label><br />
            <small>4 Hours: 240, 12 Hours: 720, 24 Hours: 1440</small>
            <TelerikNumericTextBox @bind-Value="@EditingMethod.RunFrequencyMinutes"
                                   Min="5"
                                   Max="1440"
                                   Step="5"
                                   Decimals="0" />
        </div>
        <div>
            <TelerikButton OnClick="OnSavePopup">Save</TelerikButton>
            <TelerikButton OnClick="OnCancelPopup">Cancel</TelerikButton>
        </div>
    </WindowContent>
</TelerikWindow>

Hristian Stefanov
Telerik team
commented on 21 Jan 2026, 12:19 PM

Hi Joel,

The configuration of the TelerikWindow looks correct. I copied it and tested it on my end, and the numeric value behaves as expected.

As a next step, I’m sharing this REPL link where you can run the sample and check whether you observe the same behavior. If the issue persists, please modify the example to reproduce the problem and send it back to me so I can investigate further.

Kind Regards,

Hristian

No answers yet. Maybe you can help?

Tags
NumericTextBox
Asked by
Joel
Top achievements
Rank 3
Bronze
Iron
Iron
Share this question
or