I am using RadInputManager to create a series of numeric text boxes. Although 0 is an allowed value, when submitting the form the text box is cleared.
Here is the sample code I have been using to test this:
Here is the sample code I have been using to test this:
<asp:ScriptManager ID="SM1" runat="server" />
<telerik:RadInputManager ID="RIM1" runat="server">
<telerik:NumericTextBoxSetting BehaviorID="Number" DecimalDigits="2" MaxValue="9999.99" MinValue="0.00" EmptyMessage="Type something" Type="Number">
<TargetControls>
<telerik:TargetInput ControlID="TestBox" />
</TargetControls>
</telerik:NumericTextBoxSetting>
</telerik:RadInputManager>
<asp:TextBox ID="TestBox" runat="server" />
<asp:Button ID="Submit" runat="server" Text="Submit" />