Hi, I'm using in asp.net a NumericTextBox control, with a lower and upper limit value, but I don't know how to set that only integers are displayed, it seems that the limits and the maximum number of digits equal to 4 allow to limit the damage inserting years, but the '.' is displayed to separate the thousands
How do I avoid it? Thank you
How do I avoid it? Thank you
<telerik:RadNumericTextBox runat="server" ID="txtFirstYear" RenderMode="Lightweight" MaxLength="4" MaxValue="2030" Visible="true" EmptyMessage="" MinValue="1998" CausesValidation="True" Culture="it-IT" DataType="System.Int32">
<NumberFormat DecimalDigits="0" />
</telerik:RadNumericTextBox>