Bonjour,

J'utilise le contrôle CalendarExtender et je veux afficher que les mois.
comment je peux le faire.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
 
<cc1:CalendarExtender ID="cxDateDebut" 
                                          runat="server"
                                          Animated="true" 
                                          TargetControlID="txtDebutPeriode"
                                          PopupPosition="Right"
                                          Format="MM/yyyy" 
                                          OnClientShown="onCalendarShown" >
 </cc1:CalendarExtender>
    <script type="text/javascript" >
        function onCalendarShown(sender, args) {
            sender._switchMode("years", true);
        }
    </script>