Hello
I'm using a birthdate control with RadDatePicker. As you know its default minDate is 1980. In a normal condition when I change the mindate there's no problem. But in my repeater which creates multiple date pickers can't modify the mindate. Here's my code part
I'm using a birthdate control with RadDatePicker. As you know its default minDate is 1980. In a normal condition when I change the mindate there's no problem. But in my repeater which creates multiple date pickers can't modify the mindate. Here's my code part
<asp:Repeater runat="server" ID="rptChildren"><ItemTemplate> <div class="passenger"> <div class="info"> <span class="inputTitle">Birthdate</span> <telerik:RadDatePicker ID="dtChildBirthDate" runat="server" Width="150px" MinDate="1/1/1910"></telerik:RadDatePicker> </div> </div></ItemTemplate></asp:Repeater>