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 :

Placer le curseur sur un input


Sujet :

JavaScript

  1. #1
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut Placer le curseur sur un input
    Bonjour à tous,
    Je voudrai savoir si il est possible de pouvoir, lors du chargement d'une page php, de pouvoir placer le curseur de saisie sur l'input que l'on veut. Si oui, est-il aussi possible de pouvoir sélectionner une partie du texte présent dans ce input ?
    Merci d'avance

  2. #2
    Expert confirmé
    Avatar de Auteur
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    7 660
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 7 660
    Par défaut
    bonjour,

    pour donner le focus à ton élément lors du chargement de la page :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    <body onload="document.getElementById('idInput').focus()">
    et pour la sélection
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
     
    document.getElementById('idInput').select();

  3. #3
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    Merci de ton aide, mais pour la selection, où dois-je mettre ce code ?

  4. #4
    Membre Expert
    Avatar de FremyCompany
    Profil pro
    Étudiant
    Inscrit en
    Février 2006
    Messages
    2 532
    Détails du profil
    Informations personnelles :
    Âge : 33
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2006
    Messages : 2 532
    Par défaut
    pareil que pour l'autre, dans le onload

  5. #5
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    Merci pour l'aide mais malheureusement, la solution pour la sélection du texte ne marche pas. Sinon j'ai trouvé ceci :
    http://getahead.ltd.uk/dwr/browser/util/selectrange
    Mais il me semble qu'il faut utiliser l'Ajax pour que ça fonctionne. Pourriez-vous m'éclairez la-dessus car je n'y connais rien du tout en Ajax.

  6. #6
    Expert confirmé
    Avatar de Auteur
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    7 660
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 7 660
    Par défaut
    Citation Envoyé par griese
    Merci pour l'aide mais malheureusement, la solution pour la sélection du texte ne marche pas.
    bizarre, la méthode select() fonctionne très bien chez moi avec IE et Firefox.
    Quel est ton code ?

  7. #7
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    voici le code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    <body link="#4682B4" alink="#4682B4" vlink="#4682B4" 
    onload="document.form.date.focus() && document.form.date.select();;">
    l'input récupère le focus mais pas de select
    Alors docteur, c'est grave ?

  8. #8
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    C'est bon, j'ai résolu le probleme avec une fonction que j'ai trouvé sur le net.
    La voici si quelqu'un est intéressé :
    Attention aux yeux
    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
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
    495
    496
    497
    498
    499
    500
    501
    502
    503
    504
    505
    506
    507
    508
    509
    510
    511
    512
    513
    514
    515
    516
    517
    518
    519
    520
    521
    522
    523
    524
    525
    526
    527
    528
    529
    530
    531
    532
    533
    534
    535
    536
    537
    538
    539
    540
    541
    542
    543
    544
    545
    546
    547
    548
    549
    550
    551
    552
    553
    554
    555
    556
    557
    558
    559
    560
    561
    562
    563
    564
    565
    566
    567
    568
    569
    570
    571
    572
    573
    574
    575
    576
    577
    578
    579
    580
    581
    582
    583
    584
    585
    586
    587
    588
    589
    590
    591
    592
    593
    594
    595
    596
    597
    598
    599
    600
    601
    602
    603
    604
    605
    606
    607
    608
    609
    610
    611
    612
    613
    614
    615
    616
    617
    618
    619
    620
    621
    622
    623
    624
    625
    626
    627
    628
    629
    630
    631
    632
    633
    634
    635
    636
    637
    638
    639
    640
    641
    642
    643
    644
    645
    646
    647
    648
    649
    650
    651
    652
    653
    654
    655
    656
    657
    658
    659
    660
    661
    662
    663
    664
    665
    666
    667
    668
    669
    670
    671
    672
    673
    674
    675
    676
    677
    678
    679
    680
    681
    682
    683
    684
    685
    686
    687
    688
    689
    690
    691
    692
    693
    694
    695
    696
    697
    698
    699
    700
    701
    702
    703
    704
    705
    706
    707
    708
    709
    710
    711
    712
    713
    714
    715
    716
    717
    718
    719
    720
    721
    722
    723
    724
    725
    726
    727
    728
    729
    730
    731
    732
    733
    734
    735
    736
    737
    738
    739
    740
    741
    742
    743
    744
    745
    746
    747
    748
    749
    750
    751
    752
    753
    754
    755
    756
    757
    758
    759
    760
    761
    762
    763
    764
    765
    766
    767
    768
    769
    770
    771
    772
    773
    774
    775
    776
    777
    778
    779
    780
    781
    782
    783
    784
    785
    786
    787
    788
    789
    790
    791
    792
    793
    794
    795
    796
    797
    798
    799
    800
    801
    802
    803
    804
    805
    806
    807
    808
    809
    810
    811
    812
    813
    814
    815
    816
    817
    818
    819
    820
    821
    822
    823
    824
    825
    826
    827
    828
    829
    830
    831
    832
    833
    834
    835
    836
    837
    838
    839
    840
    841
    842
    843
    844
    845
    846
    847
    848
    849
    850
    851
    852
    853
    854
    855
    856
    857
    858
    859
    860
    861
    862
    863
    864
    865
    866
    867
    868
    869
    870
    871
    872
    873
    874
    875
    876
    877
    878
    879
    880
    881
    882
    883
    884
    885
    886
    887
    888
    889
    890
    891
    892
    893
    894
    895
    896
    897
    898
    899
    900
    901
    902
    903
    904
    905
    906
    907
    908
    909
    910
    911
    912
    913
    914
    915
     
    function doSelectRange()
    {
         DWRUtil.selectRange("date", 0, 2);
    }
    function DWRUtil() { }
     
    /**
     * Enables you to react to return being pressed in an input
     * @see http://getahead.ltd.uk/dwr/browser/util/selectrange
     */
    DWRUtil.onReturn = function(event, action) {
      if (!event) {
        event = window.event;
      }
      if (event && event.keyCode && event.keyCode == 13) {
        action();
      }
    };
     
    /**
     * Select a specific range in a text box. Useful for 'google suggest' type functions.
     * @see http://getahead.ltd.uk/dwr/browser/util/selectrange
     */
    DWRUtil.selectRange = function(ele, start, end) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("selectRange() can't find an element with id: " + orig + ".");
        return;
      }
      if (ele.setSelectionRange) {
        ele.setSelectionRange(start, end);
      }
      else if (ele.createTextRange) {
        var range = ele.createTextRange();
        range.moveStart("character", start);
        range.moveEnd("character", end - ele.value.length);
        range.select();
      }
      ele.focus();
    };
     
    /**
     * @private Experimental for getting the selected text
     */
    DWRUtil._getSelection = function(ele) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("selectRange() can't find an element with id: " + orig + ".");
        return;
      }
      return ele.value.substring(ele.selectionStart, ele.selectionEnd);
     
      // if (window.getSelection) return window.getSelection().getRangeAt(0);
      // else if (document.getSelection) return document.getSelection();
      // else if (document.selection) return document.selection.createRange().text;
      // return "";
    }
     
    /**
     * Find the element in the current HTML document with the given id or ids
     * @see http://getahead.ltd.uk/dwr/browser/util/$
     */
    var $;
    if (!$ && document.getElementById) {
      $ = function() {
        var elements = new Array();
        for (var i = 0; i < arguments.length; i++) {
          var element = arguments[i];
          if (typeof element == 'string') {
            element = document.getElementById(element);
          }
          if (arguments.length == 1) {
            return element;
          }
          elements.push(element);
        }
        return elements;
      }
    }
    else if (!$ && document.all) {
      $ = function() {
        var elements = new Array();
        for (var i = 0; i < arguments.length; i++) {
          var element = arguments[i];
          if (typeof element == 'string') {
            element = document.all[element];
          }
          if (arguments.length == 1) {
            return element;
          }
          elements.push(element);
        }
        return elements;
      }
    }
     
    /**
     * Like toString but aimed at debugging
     * @see http://getahead.ltd.uk/dwr/browser/util/todescriptivestring
     */
    DWRUtil.toDescriptiveString = function(data, level, depth) {
      var reply = "";
      var i = 0;
      var value;
      var obj;
      if (level == null) level = 0;
      if (depth == null) depth = 0;
      if (data == null) return "null";
      if (DWRUtil._isArray(data)) {
        if (data.length == 0) reply += "[]";
        else {
          if (level != 0) reply += "[\n";
          else reply = "[";
          for (i = 0; i < data.length; i++) {
            try {
              obj = data[i];
              if (obj == null || typeof obj == "function") {
                continue;
              }
              else if (typeof obj == "object") {
                if (level > 0) value = DWRUtil.toDescriptiveString(obj, level - 1, depth + 1);
                else value = DWRUtil._detailedTypeOf(obj);
              }
              else {
                value = "" + obj;
                value = value.replace(/\/n/g, "\\n");
                value = value.replace(/\/t/g, "\\t");
              }
            }
            catch (ex) {
              value = "" + ex;
            }
           if (level != 0)  {
              reply += DWRUtil._indent(level, depth + 2) + value + ", \n";
           }
            else {
              if (value.length > 13) value = value.substring(0, 10) + "...";
              reply += value + ", ";
              if (i > 5) {
                reply += "...";
                break;
              }
            }
          }
          if (level != 0) reply += DWRUtil._indent(level, depth) + "]";
          else reply += "]";
        }
        return reply;
      }
      if (typeof data == "string" || typeof data == "number" || DWRUtil._isDate(data)) {
        return data.toString();
      }
      if (typeof data == "object") {
        var typename = DWRUtil._detailedTypeOf(data);
        if (typename != "Object")  reply = typename + " ";
        if (level != 0) reply += "{\n";
        else reply = "{";
        var isHtml = DWRUtil._isHTMLElement(data);
        for (var prop in data) {
          if (isHtml) {
            // HTML nodes have far too much stuff. Chop out the constants
            if (prop.toUpperCase() == prop || prop == "title" ||
              prop == "lang" || prop == "dir" || prop == "className" ||
              prop == "form" || prop == "name" || prop == "prefix" ||
              prop == "namespaceURI" || prop == "nodeType" ||
              prop == "firstChild" || prop == "lastChild" ||
              prop.match(/^offset/)) {
              continue;
            }
          }
          value = "";
          try {
            obj = data[prop];
            if (obj == null || typeof obj == "function") {
              continue;
            }
            else if (typeof obj == "object") {
              if (level > 0) {
                value = "\n";
                value += DWRUtil._indent(level, depth + 2);
                value = DWRUtil.toDescriptiveString(obj, level - 1, depth + 1);
              }
              else {
                value = DWRUtil._detailedTypeOf(obj);
              }
            }
            else {
              value = "" + obj;
              value = value.replace(/\/n/g, "\\n");
              value = value.replace(/\/t/g, "\\t");
            }
          }
          catch (ex) {
            value = "" + ex;
          }
          if (level == 0 && value.length > 13) value = value.substring(0, 10) + "...";
          var propStr = prop;
          if (propStr.length > 30) propStr = propStr.substring(0, 27) + "...";
          if (level != 0) reply += DWRUtil._indent(level, depth + 1);
          reply += prop + ":" + value + ", ";
          if (level != 0) reply += "\n";
          i++;
          if (level == 0 && i > 5) {
            reply += "...";
            break;
          }
        }
        reply += DWRUtil._indent(level, depth);
        reply += "}";
        return reply;
      }
      return data.toString();
    };
     
    /**
     * @private Indenting for DWRUtil.toDescriptiveString
     */
    DWRUtil._indent = function(level, depth) {
      var reply = "";
      if (level != 0) {
        for (var j = 0; j < depth; j++) {
          reply += "\u00A0\u00A0";
        }
        reply += " ";
      }
      return reply;
    };
     
    /**
     * Setup a GMail style loading message.
     * @see http://getahead.ltd.uk/dwr/browser/util/useloadingmessage
     */
    DWRUtil.useLoadingMessage = function(message) {
      var loadingMessage;
      if (message) loadingMessage = message;
      else loadingMessage = "Loading";
      DWREngine.setPreHook(function() {
        var disabledZone = $('disabledZone');
        if (!disabledZone) {
          disabledZone = document.createElement('div');
          disabledZone.setAttribute('id', 'disabledZone');
          disabledZone.style.position = "absolute";
          disabledZone.style.zIndex = "1000";
          disabledZone.style.left = "0px";
          disabledZone.style.top = "0px";
          disabledZone.style.width = "100%";
          disabledZone.style.height = "100%";
          document.body.appendChild(disabledZone);
          var messageZone = document.createElement('div');
          messageZone.setAttribute('id', 'messageZone');
          messageZone.style.position = "absolute";
          messageZone.style.top = "0px";
          messageZone.style.right = "0px";
          messageZone.style.background = "red";
          messageZone.style.color = "white";
          messageZone.style.fontFamily = "Arial,Helvetica,sans-serif";
          messageZone.style.padding = "4px";
          disabledZone.appendChild(messageZone);
          var text = document.createTextNode(loadingMessage);
          messageZone.appendChild(text);
        }
        else {
          $('messageZone').innerHTML = loadingMessage;
          disabledZone.style.visibility = 'visible';
        }
      });
      DWREngine.setPostHook(function() {
        $('disabledZone').style.visibility = 'hidden';
      });
    }
     
    /**
     * Set the value an HTML element to the specified value.
     * @see http://getahead.ltd.uk/dwr/browser/util/setvalue
     */
    DWRUtil.setValue = function(ele, val, options) {
      if (val == null) val = "";
      if (options != null) {
        if (options.escapeHtml) {
          val = val.replace(/&/, "&amp;");
          val = val.replace(/'/, "&apos;");
          val = val.replace(/</, "&lt;");
          val = val.replace(/>/, "&gt;");
        }
      }
     
      var orig = ele;
      var nodes, node, i;
     
      ele = $(ele);
      // We can work with names and need to sometimes for radio buttons
      if (ele == null) {
        nodes = document.getElementsByName(orig);
        if (nodes.length >= 1) {
          ele = nodes.item(0);
        }
      }
      if (ele == null) {
        DWRUtil.debug("setValue() can't find an element with id/name: " + orig + ".");
        return;
      }
     
      if (DWRUtil._isHTMLElement(ele, "select")) {
        if (ele.type == "select-multiple" && DWRUtil._isArray(val)) {
          DWRUtil._selectListItems(ele, val);
        }
        else {
          DWRUtil._selectListItem(ele, val);
        }
        return;
      }
     
      if (DWRUtil._isHTMLElement(ele, "input")) {
        if (ele.type == "radio") {
          // Some browsers match names when looking for ids, so check names anyway.
          if (nodes == null) nodes = document.getElementsByName(orig);
          if (nodes != null && nodes.length > 1) {
            for (i = 0; i < nodes.length; i++) {
              node = nodes.item(i);
              if (node.type == "radio") {
                node.checked = (node.value == val);
              }
            }
          }
          else {
            ele.checked = (val == true);
          }
        }
        else if (ele.type == "checkbox") {
          ele.checked = val;
        }
        else {
          ele.value = val;
        }
        return;
      }
     
      if (DWRUtil._isHTMLElement(ele, "textarea")) {
        ele.value = val;
        return;
      }
     
      // If the value to be set is a DOM object then we try importing the node
      // rather than serializing it out
      if (val.nodeType) {
        if (val.nodeType == 9 /*Node.DOCUMENT_NODE*/) {
          val = val.documentElement;
        }
     
        val = DWRUtil._importNode(ele.ownerDocument, val, true);
        ele.appendChild(val);
        return;
      }
     
      // Fall back to innerHTML
      ele.innerHTML = val;
    };
     
    /**
     * @private Find multiple items in a select list and select them. Used by setValue()
     * @param ele The select list item
     * @param val The array of values to select
     */
    DWRUtil._selectListItems = function(ele, val) {
      // We deal with select list elements by selecting the matching option
      // Begin by searching through the values
      var found  = false;
      var i;
      var j;
      for (i = 0; i < ele.options.length; i++) {
        ele.options[i].selected = false;
        for (j = 0; j < val.length; j++) {
          if (ele.options[i].value == val[j]) {
            ele.options[i].selected = true;
          }
        }
      }
      // If that fails then try searching through the visible text
      if (found) return;
     
      for (i = 0; i < ele.options.length; i++) {
        for (j = 0; j < val.length; j++) {
          if (ele.options[i].text == val[j]) {
            ele.options[i].selected = true;
          }
        }
      }
    };
     
    /**
     * @private Find an item in a select list and select it. Used by setValue()
     * @param ele The select list item
     * @param val The value to select
     */
    DWRUtil._selectListItem = function(ele, val) {
      // We deal with select list elements by selecting the matching option
      // Begin by searching through the values
      var found  = false;
      var i;
      for (i = 0; i < ele.options.length; i++) {
        if (ele.options[i].value == val) {
          ele.options[i].selected = true;
          found = true;
        }
        else {
          ele.options[i].selected = false;
        }
      }
     
      // If that fails then try searching through the visible text
      if (found) return;
     
      for (i = 0; i < ele.options.length; i++) {
        if (ele.options[i].text == val) {
          ele.options[i].selected = true;
        }
        else {
          ele.options[i].selected = false;
        }
      }
    }
     
    /**
     * Read the current value for a given HTML element.
     * @see http://getahead.ltd.uk/dwr/browser/util/getvalue
     */
    DWRUtil.getValue = function(ele, options) {
      if (options == null) {
        options = {};
      }
      var orig = ele;
      ele = $(ele);
      // We can work with names and need to sometimes for radio buttons, and IE has
      // an annoying bug where
      var nodes = document.getElementsByName(orig);
      if (ele == null && nodes.length >= 1) {
        ele = nodes.item(0);
      }
      if (ele == null) {
        DWRUtil.debug("getValue() can't find an element with id/name: " + orig + ".");
        return "";
      }
     
      if (DWRUtil._isHTMLElement(ele, "select")) {
        // This is a bit of a scam because it assumes single select
        // but I'm not sure how we should treat multi-select.
        var sel = ele.selectedIndex;
        if (sel != -1) {
          var reply = ele.options[sel].value;
          if (reply == null || reply == "") {
            reply = ele.options[sel].text;
          }
     
          return reply;
        }
        else {
          return "";
        }
      }
     
      if (DWRUtil._isHTMLElement(ele, "input")) {
        if (ele.type == "radio") {
          var node;
          for (i = 0; i < nodes.length; i++) {
            node = nodes.item(i);
            if (node.type == "radio") {
              if (node.checked) {
                if (nodes.length > 1) return node.value;
                else return true;
              }
            }
          }
        }
        switch (ele.type) {
        case "checkbox":
        case "check-box":
        case "radio":
          return ele.checked;
        default:
          return ele.value;
        }
      }
     
      if (DWRUtil._isHTMLElement(ele, "textarea")) {
        return ele.value;
      }
     
      if (options.textContent) {
        if (ele.textContent) return ele.textContent;
        else if (ele.innerText) return ele.innerText;
      }
      return ele.innerHTML;
    };
     
    /**
     * getText() is like getValue() except that it reads the text (and not the value) from select elements
     * @see http://getahead.ltd.uk/dwr/browser/util/gettext
     */
    DWRUtil.getText = function(ele) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("getText() can't find an element with id: " + orig + ".");
        return "";
      }
     
      if (!DWRUtil._isHTMLElement(ele, "select")) {
        DWRUtil.debug("getText() can only be used with select elements. Attempt to use: " + DWRUtil._detailedTypeOf(ele) + " from  id: " + orig + ".");
        return "";
      }
     
      // This is a bit of a scam because it assumes single select
      // but I'm not sure how we should treat multi-select.
      var sel = ele.selectedIndex;
      if (sel != -1) {
        return ele.options[sel].text;
      }
      else {
        return "";
      }
    };
     
    /**
     * Given a map, call setValue() for all the entries in the map using the entry key as an element id
     * @see http://getahead.ltd.uk/dwr/browser/util/setvalues
     */
    DWRUtil.setValues = function(map) {
      for (var property in map) {
        // Are there any elements with that id or name
        if ($(property) != null || document.getElementsByName(property).length >= 1) {
          DWRUtil.setValue(property, map[property]);
        }
      }
    };
     
    /**
     * Given a map, call getValue() for all the entries in the map using the entry key as an element id.
     * Given a string or element that refers to a form, create an object from the elements of the form.
     * @see http://getahead.ltd.uk/dwr/browser/util/getvalues
     */
    DWRUtil.getValues = function(data) {
      var ele;
      if (typeof data == "string") ele = $(data);
      if (DWRUtil._isHTMLElement(data)) ele = data;
      if (ele != null) {
        if (ele.elements == null) {
          alert("getValues() requires an object or reference to a form element.");
          return null;
        }
        var reply = {};
        var value;
        for (var i = 0; i < ele.elements.length; i++) {
          if (ele[i].id != null) value = ele[i].id;
          else if (ele[i].value != null) value = ele[i].value;
          else value = "element" + i;
          reply[value] = DWRUtil.getValue(ele[i]);
        }
        return reply;
      }
      else {
        for (var property in data) {
          // Are there any elements with that id or name
          if ($(property) != null || document.getElementsByName(property).length >= 1) {
            data[property] = DWRUtil.getValue(property);
          }
        }
        return data;
      }
    };
     
    /**
     * Add options to a list from an array or map.
     * @see http://getahead.ltd.uk/dwr/browser/lists
     */
    DWRUtil.addOptions = function(ele, data) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("addOptions() can't find an element with id: " + orig + ".");
        return;
      }
      var useOptions = DWRUtil._isHTMLElement(ele, "select");
      var useLi = DWRUtil._isHTMLElement(ele, ["ul", "ol"]);
      if (!useOptions && !useLi) {
        DWRUtil.debug("addOptions() can only be used with select/ul/ol elements. Attempt to use: " + DWRUtil._detailedTypeOf(ele));
        return;
      }
      if (data == null) return;
     
      var text;
      var value;
      var opt;
      var li;
      if (DWRUtil._isArray(data)) {
        // Loop through the data that we do have
        for (var i = 0; i < data.length; i++) {
          if (useOptions) {
            if (arguments[2] != null) {
              if (arguments[3] != null) {
                text = DWRUtil._getValueFrom(data[i], arguments[3]);
                value = DWRUtil._getValueFrom(data[i], arguments[2]);
              }
              else {
                value = DWRUtil._getValueFrom(data[i], arguments[2]);
                text = value;
              }
            }
            else
            {
              text = DWRUtil._getValueFrom(data[i], arguments[3]);
              value = text;
            }
            if (text || value) {
              opt = new Option(text, value);
              ele.options[ele.options.length] = opt;
            }
          }
          else {
            li = document.createElement("li");
            value = DWRUtil._getValueFrom(data[i], arguments[2]);
            if (value != null) {
              li.innerHTML = value;
              ele.appendChild(li);
            }
          }
        }
      }
      else if (arguments[3] != null) {
        for (var prop in data) {
          if (!useOptions) {
            alert("DWRUtil.addOptions can only create select lists from objects.");
            return;
          }
          value = DWRUtil._getValueFrom(data[prop], arguments[2]);
          text = DWRUtil._getValueFrom(data[prop], arguments[3]);
          if (text || value) {
            opt = new Option(text, value);
            ele.options[ele.options.length] = opt;
          }
        }
      }
      else {
        for (var prop in data) {
          if (!useOptions) {
            DWRUtil.debug("DWRUtil.addOptions can only create select lists from objects.");
            return;
          }
          if (typeof data[prop] == "function") {
            // Skip this one it's a function.
            text = null;
            value = null;
          }
          else if (arguments[2]) {
            text = prop;
            value = data[prop];
          }
          else {
            text = data[prop];
            value = prop;
          }
          if (text || value) {
            opt = new Option(text, value);
            ele.options[ele.options.length] = opt;
          }
        }
      }
    };
     
    /**
     * @private Get the data from an array function for DWRUtil.addOptions
     */
    DWRUtil._getValueFrom = function(data, method) {
      if (method == null) return data;
      else if (typeof method == 'function') return method(data);
      else return data[method];
    }
     
    /**
     * Remove all the options from a select list (specified by id)
     * @see http://getahead.ltd.uk/dwr/browser/lists
     */
    DWRUtil.removeAllOptions = function(ele) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("removeAllOptions() can't find an element with id: " + orig + ".");
        return;
      }
      var useOptions = DWRUtil._isHTMLElement(ele, "select");
      var useLi = DWRUtil._isHTMLElement(ele, ["ul", "ol"]);
      if (!useOptions && !useLi) {
        DWRUtil.debug("removeAllOptions() can only be used with select, ol and ul elements. Attempt to use: " + DWRUtil._detailedTypeOf(ele));
        return;
      }
      if (useOptions) {
        ele.options.length = 0;
      }
      else {
        while (ele.childNodes.length > 0) {
          ele.removeChild(ele.firstChild);
        }
      }
    };
     
    /**
     * Create rows inside a the table, tbody, thead or tfoot element (given by id).
     * @see http://getahead.ltd.uk/dwr/browser/tables
     */
    DWRUtil.addRows = function(ele, data, cellFuncs, options) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("addRows() can't find an element with id: " + orig + ".");
        return;
      }
      if (!DWRUtil._isHTMLElement(ele, ["table", "tbody", "thead", "tfoot"])) {
        DWRUtil.debug("addRows() can only be used with table, tbody, thead and tfoot elements. Attempt to use: " + DWRUtil._detailedTypeOf(ele));
        return;
      }
      if (!options) options = {};
      if (!options.rowCreator) options.rowCreator = DWRUtil._defaultRowCreator;
      if (!options.cellCreator) options.cellCreator = DWRUtil._defaultCellCreator;
      var tr, rowNum;
      if (DWRUtil._isArray(data)) {
        for (rowNum = 0; rowNum < data.length; rowNum++) {
          options.rowData = data[rowNum];
          options.rowIndex = rowNum;
          options.rowNum = rowNum;
          options.data = null;
          options.cellNum = -1;
          tr = DWRUtil._addRowInner(cellFuncs, options);
          if (tr != null) ele.appendChild(tr);
        }
      }
      else if (typeof data == "object") {
        rowNum = 0;
        for (var rowIndex in data) {
          options.rowData = data[rowIndex];
          options.rowIndex = rowIndex;
          options.rowNum = rowNum;
          options.data = null;
          options.cellNum = -1;
          tr = DWRUtil._addRowInner(cellFuncs, options);
          if (tr != null) ele.appendChild(tr);
          rowNum++;
        }
      }
    };
     
    /**
     * @private Internal function to draw a single row of a table.
     */
    DWRUtil._addRowInner = function(cellFuncs, options) {
      var tr = options.rowCreator(options);
      if (tr == null) return null;
      for (var cellNum = 0; cellNum < cellFuncs.length; cellNum++) {
        var func = cellFuncs[cellNum];
        var td;
        //if (typeof func == "string") {
        //  options.data = func;
        //  options.cellNum = cellNum;
        //  td = options.cellCreator(options);
        //  td.appendChild(document.createTextNode(func));
        //}
        //else {
          var reply = func(options.rowData);
          options.data = reply;
          options.cellNum = cellNum;
          td = options.cellCreator(options);
          if (DWRUtil._isHTMLElement(reply, "td")) td = reply;
          else if (DWRUtil._isHTMLElement(reply)) td.appendChild(reply);
          else td.innerHTML = reply;
        //}
        tr.appendChild(td);
      }
      return tr;
    };
     
    /**
     * @private Default row creation function
     */
    DWRUtil._defaultRowCreator = function(options) {
      return document.createElement("tr");
    };
     
    /**
     * @private Default cell creation function
     */
    DWRUtil._defaultCellCreator = function(options) {
      return document.createElement("td");
    };
     
    /**
     * Remove all the children of a given node.
     * @see http://getahead.ltd.uk/dwr/browser/tables
     */
    DWRUtil.removeAllRows = function(ele) {
      var orig = ele;
      ele = $(ele);
      if (ele == null) {
        DWRUtil.debug("removeAllRows() can't find an element with id: " + orig + ".");
        return;
      }
      if (!DWRUtil._isHTMLElement(ele, ["table", "tbody", "thead", "tfoot"])) {
        DWRUtil.debug("removeAllRows() can only be used with table, tbody, thead and tfoot elements. Attempt to use: " + DWRUtil._detailedTypeOf(ele));
        return;
      }
      while (ele.childNodes.length > 0) {
        ele.removeChild(ele.firstChild);
      }
    };
     
    /**
     * @private Is the given node an HTML element (optionally of a given type)?
     * @param ele The element to test
     * @param nodeName eg "input", "textarea" - check for node name (optional)
     *         if nodeName is an array then check all for a match.
     */
    DWRUtil._isHTMLElement = function(ele, nodeName) {
      if (ele == null || typeof ele != "object" || ele.nodeName == null) {
        return false;
      }
     
      if (nodeName != null) {
        var test = ele.nodeName.toLowerCase();
     
        if (typeof nodeName == "string") {
          return test == nodeName.toLowerCase();
        }
     
        if (DWRUtil._isArray(nodeName)) {
          var match = false;
          for (var i = 0; i < nodeName.length && !match; i++) {
            if (test == nodeName[i].toLowerCase()) {
              match =  true;
            }
          }
          return match;
        }
     
        DWRUtil.debug("DWRUtil._isHTMLElement was passed test node name that is neither a string or array of strings");
        return false;
      }
     
      return true;
    };
     
    /**
     * @private Like typeOf except that more information for an object is returned other than "object"
     */
    DWRUtil._detailedTypeOf = function(x) {
      var reply = typeof x;
      if (reply == "object") {
        reply = Object.prototype.toString.apply(x);  // Returns "[object class]"
        reply = reply.substring(8, reply.length-1);  // Just get the class bit
      }
      return reply;
    };
     
    /**
     * @private Array detector. Work around the lack of instanceof in some browsers.
     */
    DWRUtil._isArray = function(data) {
      return (data && data.join) ? true : false;
    };
     
    /**
     * @private Date detector. Work around the lack of instanceof in some browsers.
     */
    DWRUtil._isDate = function(data) {
      return (data && data.toUTCString) ? true : false;
    };
     
    /**
     * @private Used by setValue. Gets around the missing functionallity in IE.
     */
    DWRUtil._importNode = function(doc, importedNode, deep) {
      var newNode;
     
      if (importedNode.nodeType == 1 /*Node.ELEMENT_NODE*/) {
        newNode = doc.createElement(importedNode.nodeName);
     
        for (var i = 0; i < importedNode.attributes.length; i++) {
          var attr = importedNode.attributes[i];
          if (attr.nodeValue != null && attr.nodeValue != '') {
            newNode.setAttribute(attr.name, attr.nodeValue);
          }
        }
     
        if (typeof importedNode.style != "undefined") {
          newNode.style.cssText = importedNode.style.cssText;
        }
      }
      else if (importedNode.nodeType == 3 /*Node.TEXT_NODE*/) {
        newNode = doc.createTextNode(importedNode.nodeValue);
      }
     
      if (deep && importedNode.hasChildNodes()) {
        for (i = 0; i < importedNode.childNodes.length; i++) {
          newNode.appendChild(DWRUtil._importNode(doc, importedNode.childNodes[i], true));
        }
      }
     
      return newNode;
    }
     
    /**
     * Used internally when some message needs to get to the programmer
     */
    DWRUtil.debug = function(message) {
      alert(message);
    }
    Bonne lecture et merci pour votre aide.

  9. #9
    Expert confirmé
    Avatar de Auteur
    Profil pro
    Inscrit en
    Avril 2004
    Messages
    7 660
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Avril 2004
    Messages : 7 660
    Par défaut
    Citation Envoyé par griese
    voici le code :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     
    <body link="#4682B4" alink="#4682B4" vlink="#4682B4" 
    onload="document.form.date.focus() && document.form.date.select();;">
    l'input récupère le focus mais pas de select
    Alors docteur, c'est grave ?

    il y a une erreur dans ton code. Que vient faire le && ?
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
     
    <body link="#4682B4" alink="#4682B4" vlink="#4682B4" onload="document.getElementById('date').focus();document.getElementById('date').select();"
    <form name="forme" method="post" action="" enctype="">
       <input type="text" value="21 juillet 2006" id="date" name="date" size="20" maxlength="10">
     
    </form>
    </body>

  10. #10
    Membre Expert
    Avatar de FremyCompany
    Profil pro
    Étudiant
    Inscrit en
    Février 2006
    Messages
    2 532
    Détails du profil
    Informations personnelles :
    Âge : 33
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2006
    Messages : 2 532
    Par défaut
    Citation Envoyé par Auteur
    il y a une erreur dans ton code. Que vient faire le && ?
    +1

  11. #11
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    Bah c'est pour executer les deux fonctions javascripts. Mais je fais plus comme ca maintenant donc le probleme est résolu.

  12. #12
    Membre Expert
    Avatar de FremyCompany
    Profil pro
    Étudiant
    Inscrit en
    Février 2006
    Messages
    2 532
    Détails du profil
    Informations personnelles :
    Âge : 33
    Localisation : Belgique

    Informations professionnelles :
    Activité : Étudiant

    Informations forums :
    Inscription : Février 2006
    Messages : 2 532
    Par défaut
    && est un opérateur de boolean (AndAlso) !
    - true && false : false
    - false && true : false
    - true && true : true
    Si le premier est false, alors il n'évalue pas le second (inutile car le résultat final est connu)

    Voila pourquoi le select() ne fonctionnait pas

  13. #13
    Membre éclairé Avatar de griese
    Profil pro
    Inscrit en
    Juin 2006
    Messages
    646
    Détails du profil
    Informations personnelles :
    Âge : 41
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations forums :
    Inscription : Juin 2006
    Messages : 646
    Par défaut
    ah, d'accord, merci beaucoup pour la précision.

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

Discussions similaires

  1. [HTML 4.0] Placer le curseur sur un champ (sans Javascript)
    Par zobbyzobba dans le forum Balisage (X)HTML et validation W3C
    Réponses: 2
    Dernier message: 28/11/2011, 16h25
  2. Réponses: 2
    Dernier message: 10/06/2010, 10h10
  3. Réponses: 2
    Dernier message: 05/05/2008, 00h25
  4. [Javascript et aspx] Placer le curseur sur textbox suivante
    Par maniolo dans le forum Général JavaScript
    Réponses: 5
    Dernier message: 31/07/2007, 08h54
  5. [JTextField] placer le curseur sur un JTextField
    Par sixkiller dans le forum Composants
    Réponses: 2
    Dernier message: 30/11/2004, 21h28

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