1
<td>
    <RadDatePicker ID="txtToDate" runat="server" Field="">
    </RadDatePicker>
</td>

is there any way to disable days. i want Months and years only

Edited

thanks

Oded
  • 489,969
  • 99
  • 883
  • 1,009
Maged Samaan
  • 1,742
  • 2
  • 19
  • 39

2 Answers2

4

Use RadMonthYearPicker instead.

Bala R
  • 107,317
  • 23
  • 199
  • 210
1

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>
Ken Pespisa
  • 21,989
  • 3
  • 55
  • 63