IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

calendrier


Sujet :

JavaScript

  1. #1
    Membre du Club
    Inscrit en
    Mai 2003
    Messages
    73
    Détails du profil
    Informations forums :
    Inscription : Mai 2003
    Messages : 73
    Points : 54
    Points
    54
    Par défaut calendrier
    Bonsoir,

    J'ai un site en php ou l'utilisateur choisi une date. Pour le moment il rentre sa date dans un champs d'édition.
    J'aimerais bien utiliser un système de calendrier comme sur le site des compagnies aériennes (airfrance par ex). Une date est proposée dans un champs d'édition. Si l'utilisateur veut changer la date, il clic sur une petite icone et un calendrier apparait. L'utilisateur clic alors sur la date qu'il veut. J'espère que vous voyez plus ou moins de quoi je parles.

    Ma question: comment fait on ce genre de calendrier? Je ne demande pas qu'on le fasse à ma place. Je demande juste des pistes (programme à utiliser, langage,.....)


    Merci d'avance

    Mickael

  2. #2
    Expert confirmé
    Avatar de Sub0
    Homme Profil pro
    Développeur Web
    Inscrit en
    Décembre 2002
    Messages
    3 573
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Décembre 2002
    Messages : 3 573
    Points : 4 219
    Points
    4 219
    Par défaut
    Salut!

    Cette fonctionalité est programmée en Javascript selon moi.
    J'ai donc déplacé ce topic dans le bon forum...

    Attention! Javascript n'a rien à voir avec Java!
    Autre chose, certains navigateurs ou configurations ne proposent pas Javascript.
    Il faut en tenir compte lors du développement, et toujours proposer une alternative aux fonctions Javascript.

    Maintenant, peut-être qu'il existe d'autres solutions... mais je n'en connais pas.

    à+

  3. #3
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 644
    Points : 66 671
    Points
    66 671
    Billets dans le blog
    1
    Par défaut
    Aller on google ?

    je google tu googles...

    petite recherche avec "datepicker javascript"

  4. #4
    Nouveau membre du Club
    Inscrit en
    Avril 2003
    Messages
    30
    Détails du profil
    Informations forums :
    Inscription : Avril 2003
    Messages : 30
    Points : 36
    Points
    36
    Par défaut
    Citation Envoyé par SpaceFrog
    Aller on google ?

    je google tu googles...
    LOL

  5. #5
    Membre du Club
    Inscrit en
    Mai 2003
    Messages
    73
    Détails du profil
    Informations forums :
    Inscription : Mai 2003
    Messages : 73
    Points : 54
    Points
    54
    Par défaut calendrier
    Rebonjour

    J'ai suivi les conseils et j'ai fait une recherche sur Google. J'ai trouvé le code suivant:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
     
    <HTML>
    <HEAD>
    <TITLE>DatePicker</TITLE>
    <LINK REL="stylesheet" TYPE="text/css" HREF="datepicker.css">
    <SCRIPT LANGUAGE=javascript>
     
     
    // Global variables
    var g_oDatePicker = null;
     
    // Class constructor
    function DatePicker(sDivMain, iStartYear, iEndYear, bStartWithSunday)
    {
       // Public variables (settings)
       this.m_iStartYear = iStartYear;
       this.m_iEndYear   = iEndYear;
     
       this.m_arrDays          = new Array("Lu", "Ma", "Mer", "Je", "Vend", "Sa", "Dim");
       this.m_arrMonths        = new Array("Janvier", "Fevrier", "Mars", "Avril", "Mai", "Juin", "Juillet", "Aout", "Septembre", "Octobre", "Novembre", "Decembre");
       this.m_sClose           = "Close";
       this.m_bStartWithSunday = (bStartWithSunday!=null) ? bStartWithSunday : false;
       this.m_iStartDay        = (this.m_bStartWithSunday) ? 6 : 0; // Day to start week on, index of m_arrDays
     
       this.m_oSetValueOn = null;
     
       // Private variables
       g_oDatePicker = this;
       this.m_bInit  = false;
     
       this.m_oDivMain   = eval("parent." + sDivMain);
       this.m_oDivHead   = null;
       this.m_oDivBody   = null;
     
       this.m_oNowDate    = new Date();
       this.m_iMonth      = this.m_oNowDate.getMonth();
       this.m_iYear       = this.m_oNowDate.getFullYear();
     
       this.m_sHighlightBg       = "";
       this.m_sHighlightSundayBg = "";
       this.m_sHighlightTodayBg  = "";
     
       this.m_sRestoreHighlightBg       = "";
       this.m_sRestoreHighlightSundayBg = "";
       this.m_sRestoreHighlightTodayBg  = "";
     
       // Public functions
       this.open       = DatePickerOpen;
       this.chooseDate = DatePickerChooseDate;
       this.close      = DatePickerClose;
     
       this.setInitDate = DatePickerSetInitDate;
       this.setYear     = DatePickerSetYear;
       this.setMonth    = DatePickerSetMonth;
       this.setPosition = DatePickerSetPosition;
     
       this.forward  = DatePickerForward;
       this.backward = DatePickerBackward;
     
       // Private functions
       this.init = DatePickerInit;
     
       this.highlightDate = DatePickerHighlightDate;
       this.getColors     = DatePickerGetColors;
       this.makeMainHTML  = DatePickerMakeMainHTML;
       this.makeBodyHTML  = DatePickerMakeBodyHTML;
    }
     
    // Highlight a date (normaly on mouseover)
    function DatePickerHighlightDate(objHtml, bRestore, sDay)
    {
       if(bRestore)
          eval("objHtml.style.background = this.m_sRestoreHighlight"+sDay+"Bg");
       else
          eval("objHtml.style.background = this.m_sHighlight"+sDay+"Bg");
    }
     
    // Get the colors for the highlights
    function DatePickerGetColors()
    {
       if(this.m_sHighlightBg == "") // Only if this hasen't been done before
       {
          this.m_sHighlightBg       = document.styleSheets[0].rules[10].style.backgroundColor;
          this.m_sHighlightSundayBg = document.styleSheets[0].rules[11].style.backgroundColor;
          this.m_sHighlightTodayBg  = document.styleSheets[0].rules[15].style.backgroundColor;
     
          this.m_sRestoreHighlightBg       = document.styleSheets[0].rules[0].style.backgroundColor;
          this.m_sRestoreHighlightSundayBg = document.styleSheets[0].rules[3].style.backgroundColor;
          this.m_sRestoreHighlightTodayBg  = document.styleSheets[0].rules[14].style.backgroundColor;
       }
    }
     
    // Init the picker so that the choosen date (year, month) is open the first time
    function DatePickerSetInitDate(iYear, iMonth)
    {
       this.m_iYear  = parseInt(iYear);
       this.m_iMonth = parseInt(iMonth);
     
       if(this.m_bInit)
       {
          this.m_oDivHead.innerHTML = this.makeMainHTML();
          this.m_oDivBody.innerHTML = this.makeBodyHTML();
       }
    }
     
    // Update the picker and show the desired year
    function DatePickerSetYear(iYear, bNoFocus)
    {
       this.m_iYear = parseInt(iYear);
       this.m_oDivBody.innerHTML = this.makeBodyHTML();
    	if(!bNoFocus)
    		frmDatePicker.cboYear.focus();
    }
     
    // Update the picker and show the desired month
    function DatePickerSetMonth(iMonth, bNoFocus)
    {
       this.m_iMonth = parseInt(iMonth);
       this.m_oDivBody.innerHTML = this.makeBodyHTML();
    	if(!bNoFocus)
    	   frmDatePicker.cboMonth.focus();
    }
     
    function DatePickerForward()
    {
    	// If last month and last year, go no further
    	if(frmDatePicker.cboMonth.options.length-1 == frmDatePicker.cboMonth.selectedIndex &&
    		frmDatePicker.cboYear.options.length-1 == frmDatePicker.cboYear.selectedIndex)
    		return;
     
    	// If last month, increase a year
    	if(frmDatePicker.cboMonth.selectedIndex == 11)
    	{
    		frmDatePicker.cboYear.selectedIndex += 1;
    		frmDatePicker.cboMonth.selectedIndex = 0;
    		this.setYear(frmDatePicker.cboYear.value, true);
    		this.setMonth(frmDatePicker.cboMonth.value, true);
    	}
    	else // Increase a month
    	{
    		frmDatePicker.cboMonth.selectedIndex += 1;
    		this.setMonth(frmDatePicker.cboMonth.value, true);
    	}
    }
     
    function DatePickerBackward()
    {
    	// If last month and last year, go no further
    	if(0 == frmDatePicker.cboMonth.selectedIndex && 0 == frmDatePicker.cboYear.selectedIndex)
    		return;
     
    	// If first month, decrease a year
    	if(frmDatePicker.cboMonth.selectedIndex == 0)
    	{
    		frmDatePicker.cboYear.selectedIndex -= 1;
    		frmDatePicker.cboMonth.selectedIndex = 11;
    		this.setYear(frmDatePicker.cboYear.value, true);
    		this.setMonth(frmDatePicker.cboMonth.value, true);
    	}
    	else // Decrease a month
    	{
    		frmDatePicker.cboMonth.selectedIndex -= 1;
    		this.setMonth(frmDatePicker.cboMonth.value, true);
    	}
    }
     
    // Close/hide the datepicker
    function DatePickerClose()
    {
       this.m_oDivMain.style.visibility = "hidden";
    }
     
    // Select/return a date (normaly on onclick)
    function DatePickerChooseDate(sDate)
    {
       var sMonth = this.m_iMonth + 1;
     
       if(sMonth <= 9)
          sMonth = "0" + sMonth;
       if(sDate <= 9)
          sDate = "0" + sDate;
     
       this.m_oSetValueOn.value = this.m_iYear + '-' + sMonth + '-' + sDate;
       this.close();
    }
     
    // Create the picker, set/get default values
    function DatePickerInit()
    {
       this.getColors();
     
       this.m_oDivHead = document.all("divDatePickerHead");
       this.m_oDivBody = document.all("divDatePickerBody");
     
       this.m_oDivHead.innerHTML = this.makeMainHTML();
       this.m_oDivBody.innerHTML = this.makeBodyHTML();
     
       this.m_bInit = true;
    }
     
    // Show the picker
    function DatePickerOpen(oSetValueOn)
    {
       if(document.all) parent.event.cancelBubble = true;
       //this.m_oSetValueOn = "parent." + sSetValueOn;
       this.m_oSetValueOn = oSetValueOn;
     
       if(!this.m_bInit) // Only init if hasn't been done before
          this.init();
       else
          this.m_oDivBody.innerHTML = this.makeBodyHTML();
     
       this.setPosition();
       this.m_oDivMain.style.visibility = "visible";
    }
     
    // Create HTML code for the main/top part of the picker
    function DatePickerMakeMainHTML()
    {
       var sHTML      = "";
       var sThisMonth = "";
       var sThisYear  = "";
     
       sHTML += "<TABLE WIDTH=\"100%\" BORDER=0 CELLSPACING=0 CELLPADDING=2 CLASS=tableBgBorder>"
       sHTML += "   <FORM METHOD=post ACTION=byJavascript NAME=frmDatePicker>"
       sHTML += "      <TR>" 
       sHTML += "         <TD CLASS=cellHead><A HREF=\"#\" onClick=\"g_oDatePicker.backward();return false;\" CLASS=linkArrow>&lt;&lt;</A></TD>"
       sHTML += "         <TD CLASS=cellHead>"
       sHTML += "            <SELECT NAME=cboMonth CLASS=cboMonth onChange=\"g_oDatePicker.setMonth(this.value)\">";
     
       for(var i = 0; i < this.m_arrMonths.length; i++) // Months
       {
          sThisMonth = "";
          if(this.m_iMonth == i)
             sThisMonth = " SELECTED";
          sHTML += "<OPTION" + sThisMonth + " VALUE=" + i + ">" + this.m_arrMonths[i] + "</OPTION>";
       }
     
       sHTML += "            </SELECT>"
       sHTML += "         </TD>"
       sHTML += "         <TD CLASS=cellHead>" 
       sHTML += "            <SELECT NAME=cboYear CLASS=cboYear onChange=\"g_oDatePicker.setYear(this.value)\">";
     
       for(var i = this.m_iStartYear; i <= this.m_iEndYear; i++) // Years
       {
          sThisYear = "";
          if(this.m_iYear == i)
             sThisYear = " SELECTED";
          sHTML += "<OPTION" + sThisYear + " VALUE=" + i + ">" + i + "</OPTION>";
       }
     
       sHTML += "            </SELECT>"
       sHTML += "         </TD>"
       sHTML += "         <TD CLASS=cellHead><A HREF=\"#\" onClick=\"g_oDatePicker.forward();return false;\" CLASS=linkArrow>&gt;&gt;</A></TD>"
       sHTML += "         <TD WIDTH=\"100%\" CLASS=cellHead>&nbsp;</TD>"
       sHTML += "         <TD CLASS=cellHead><A HREF=\"#\" onClick=\"g_oDatePicker.close();return false;\" CLASS=linkClose>" + this.m_sClose + "</A></TD>"
       sHTML += "      </TR>"
       sHTML += "   </FORM>"
       sHTML += "</TABLE>"
     
       return sHTML;
    }
     
    // Create HTML code for the date section/body of the picker
    function DatePickerMakeBodyHTML()
    {
       var sHTML    = "";
       var iWeekDay = new Date(this.m_iYear, this.m_iMonth, 1).getDay();
       var iEndDate = new Date(this.m_iYear, (this.m_iMonth+1), 1).getDate();
       var iCounter = 1;
       var iSunday;
     
       // Fix startday so that week can start on different days (ie Monday or Sunday)
       iWeekDay = iWeekDay-this.m_iStartDay;
       if(iWeekDay<1) iWeekDay = iWeekDay+7;
     
       if(iEndDate==1) // Fix for NT!? Thanx to Jeff Miner
          iEndDate = new Date(this.m_iYear, (this.m_iMonth+1), 0).getDate();
     
       sHTML += "<TABLE WIDTH=100% CLASS=tableBgBorder BORDER=0 CELLSPACING=1 CELLPADDING=2><TR ALIGN=CENTER>";
     
       var iDay = this.m_iStartDay;
       for(var i=0; i<7; i++) // Days 0-6
       {
          if(iDay==6) // Sunday
          {
             sHTML += "<TD CLASS=cellDaySunday>" + this.m_arrDays[iDay] + "</TD>";
             iSunday = i+1;
          }
          else
             sHTML += "<TD CLASS=cellDay>" + this.m_arrDays[iDay] + "</TD>";
          iDay = (iDay==this.m_arrDays.length-1) ? 0 : iDay+1;
       }
     
       for(var i=0; i<7; i++) // Dates (rows) 0-6
       {
          sHTML += "<TR ALIGN=CENTER>";
          for(var i2=1; i2<=7; i2++) // Days (columns) 1-7
          {
             sDay = "";
    		   if(this.m_oNowDate.getMonth() == this.m_iMonth &&
          		this.m_oNowDate.getFullYear() == this.m_iYear &&
    				this.m_oNowDate.getDate() == iCounter) // If today
    				sDay = "Today";
             else if(i2==iSunday) // If Sunday
                sDay = "Sunday";
     
             if((i2 < iWeekDay && iCounter == 1) || (iCounter > iEndDate)) // If not start date or over end date
                sHTML += "<TD CLASS=cellEmpty>&nbsp;</TD>";
             else // Start date count now
             {
                sHTML += "<TD onClick=\"g_oDatePicker.chooseDate(" + iCounter + ");\" onMouseOver=\"g_oDatePicker.highlightDate(this, false, '"+sDay+"');\" " + 
                         "onMouseOut=\"g_oDatePicker.highlightDate(this, true, '"+sDay+"');\" CLASS=cellDate" + sDay + ">" + iCounter + "</TD>";
                iCounter++;
             }
          }
          sHTML += "</TR>";
       }
       sHTML += "</TABLE>"
       return sHTML;
    }
     
    // Relative to input, below it
    function DatePickerSetPosition()
    {
       var iLeft = 0;
       var iTop  = 0;
       var oDiv  = this.m_oDivMain.style;
       var oObj  = this.m_oSetValueOn;
     
       //iLeft += oObj.offsetWidth;
       iTop  += oObj.offsetHeight + 2;
     
       while(oObj != null)
       {
          iLeft += oObj.offsetLeft;
          iTop  += oObj.offsetTop;
          oObj   = oObj.offsetParent;
       }
     
       // If box gets outside clientArea to the right, place left of oRelativeTo
       if(parent.document.body.clientWidth < (iLeft+document.body.clientWidth))
          iLeft = iLeft-document.body.clientWidth+(this.m_oSetValueOn.offsetWidth);
       // If box gets outside clientArea at the bottom, place above oRelativeTo
       if(parent.document.body.clientHeight < (iTop+document.body.clientHeight))
          iTop = iTop-document.body.clientHeight-(this.m_oSetValueOn.offsetHeight+4);
     
       oDiv.left = iLeft;
       oDiv.top  = iTop;
    }
     
    </SCRIPT>
    </HEAD>
    <BODY TOPMARGIN="0" LEFTMARGIN="0" MARGINWIDTH="0" MARGINHEIGHT="0">
     
    <DIV ID=divDatePickerHead></DIV>
    <DIV ID=divDatePickerBody></DIV>
     
    </BODY>
    </HTML>
    vu que je n'y connais pas grand chose en JavaScript j'espère que ce code est valable.
    J'ai une question:
    comment afficher sous le format jj-mm-aaaa? Pour le moment cela s'affiche YYYY-MM-DD.
    Quand je modifie la ligne suivante :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    this.m_oSetValueOn.value = this.m_iYear + '-' + sMonth + '-' + sDate;
    en
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     this.m_oSetValueOn.value = this.m_sDate+'-'+ sMonth + iYear
    cela ne fonctionne pas. (j'ai une erreur sur la page et on m'affiche que iYear est indéfini).
    Si quelqu'un peut m'aider.....


    Merci


    Micka

  6. #6
    Rédacteur/Modérateur

    Avatar de SpaceFrog
    Homme Profil pro
    Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Inscrit en
    Mars 2002
    Messages
    39 644
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 74
    Localisation : Royaume-Uni

    Informations professionnelles :
    Activité : Développeur Web Php Mysql Html Javascript CSS Apache - Intégrateur - Bidouilleur SharePoint
    Secteur : Industrie

    Informations forums :
    Inscription : Mars 2002
    Messages : 39 644
    Points : 66 671
    Points
    66 671
    Billets dans le blog
    1
    Par défaut
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
     sDate + '-' + sMonth + '-' + this.m_iYear;

  7. #7
    Membre du Club
    Inscrit en
    Mai 2003
    Messages
    73
    Détails du profil
    Informations forums :
    Inscription : Mai 2003
    Messages : 73
    Points : 54
    Points
    54
    Par défaut calendrier
    ca marche


    Merci beaucoup


    Mickael

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Utilisation d'un calendrier (Contrôle ActiveX)
    Par MultiClic dans le forum IHM
    Réponses: 40
    Dernier message: 12/07/2006, 16h11
  2. disparition activeX calendrier
    Par djool dans le forum Access
    Réponses: 10
    Dernier message: 26/01/2005, 13h31
  3. [toFAQ]calendrier perpetuel
    Par philippe_jasmin dans le forum C
    Réponses: 17
    Dernier message: 22/04/2003, 20h04
  4. Delphi et XMLRAD pour un calendrier
    Par Toxine77 dans le forum XMLRAD
    Réponses: 9
    Dernier message: 23/01/2003, 14h56
  5. Calcul des numéros de semaine d'un calendrier
    Par Invité dans le forum Algorithmes et structures de données
    Réponses: 4
    Dernier message: 06/11/2002, 22h29

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo