<
telerik:RadInputManager
ID
=
"radInputManager1"
runat
=
"server"
>
<
telerik:NumericTextBoxSetting
BehaviorID
=
"NumericBehavior"
EmptyMessage
=
"######"
InitializeOnClient
=
"false"
Type
=
"Number"
DecimalDigits
=
"0"
GroupSeparator
=
""
Validation-IsRequired
=
"false"
>
</
telerik:NumericTextBoxSetting
>
</
telerik:RadInputManager
>
I apply the setting to a textbox in code-behind. When I don't enter a value in the textbox, the Text property of the textbox returns the inputmanager setting's EmptyMessage, "######". I would expect the Text property to return what was input in the control, in this case an empty string, not the emptymessage. Is there a way to accomplish this?