Posted
on Jan 6, 2012
(permalink)
Hello,
I am able to use RadInputManager to validate required textbox controls, but it does not work with radtextbox controls. If a RadTextBox is left empty I would like a message to appear in the box with the exclamation mark.
Is there any way to get this to work? I assumed the RadTextBox was a child of TextBox, but this may be false as this only works on a TextBox.
This works on a textbox, but not a radtextbox :
<telerik:RadInputManager ID="RadInputManager1" runat="server">
<telerik:TextBoxSetting ErrorMessage="Required">
<Validation IsRequired="true" />
<TargetControls>
<telerik:TargetInput ControlID="TextBox1" />
</TargetControls>
</telerik:TextBoxSetting>
</telerik:RadInputManager>
Please advise