Please see attached screen shot.
Thanks
Prashant
Hi
I have a rad scheduler:
<telerik:RadScheduler runat="server" ID="DiaryScheduler" Skin="Metro" ValidationGroup="Settings" ...
and a custom validator:
<asp:CustomValidator runat="server" ID="MyValidator" Display="Dynamic" ValidationGroup="Settings" ClientValidationFunction="validateMyStuff">
<span class="validation-error">Some Error Text</span>
</asp:CustomValidator>
When using this with other controls the validation occurs correctly. When usign the schedular, i.e. moving from one view to another and from one week to another, the validation is not run.
Does the ValidationGroup work with the schedular? Have I missed something, is there another setting I need to make this work, or do I have to validate manually?
Thanks
Russell
<
telerik:RadMaskedTextBox Runat="server" ID="MaskEditLon" SelectionOnFocus="CaretToBeginning"
Width="91px" PromptChar="0" >
</
telerik:RadMaskedTextBox>
Protected
Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
MaskEditLon.Mask =
"<W|E> ### ##' ##"""""
End Sub