<td>
<RadDatePicker ID="txtToDate" runat="server" Field="">
</RadDatePicker>
</td>
is there any way to disable days. i want Months and years only
Edited
thanks
I believe what you want to set is the DateFormat and DispalyDateFormat properties. From the documentation:
<telerik:RadDatePicker ID="RadDatePicker1" runat="server">
<DateInput
DateFormat="MMM yyyy"
DisplayDateFormat="MMMM yyyy">
</DateInput>
</telerik:RadDatePicker>