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 :

thead fixed / tbody scroll v2


Sujet :

JavaScript

  1. #1
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut thead fixed / tbody scroll v2
    Bonjour,
    Je cherche à reproduire un thead fixe et un tbody scrollable.
    Sauf que l'architecture est complètement différente de la dernière fois et je m'y perds ...

    dashboard.js
    Code JS : 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
     
    [...]
        var tableHeader =  '<tr>'
            + '<th>' + 'Time' + '</th>'
            + commonHeaders()
            + '<th title="Reported speed">' + 'vR (kn)' + '</th>'
            + '<th title="Calculated speed (Δd/Δt)">' + 'vC (kn)' + '</th>'
            + '<th title="Polar-derived speed">' + 'vT (kn)' + '</th>'
            + '<th title="Foiling factor">' + 'Foils' + '</th>'
            + '<th title="Calculated distance">' + 'Δd (nm)' + '</th>'
            + '<th title="Time between positions">' + 'Δt (s)' + '</th>'
            + '<th title="Sail change time remaining">' + 'Sail' + '</th>'
            + '<th title="Gybing time remaining">' + 'Gybe' + '</th>'
            + '<th title="Tacking time remaining">' + 'Tack' + '</th>'
            + '</tr>';
     
        function friendListHeader() {
            return '<tr>'
                + genth("th_rt","RT","Call Router",sortField == 'none', undefined)
                + genth("th_name","Friend/Opponent",undefined, sortField == 'displayName', currentSortOrder) 
                + genth("th_lu","Last Update",undefined)
                + genth("th_rank","Rank",undefined, sortField == 'rank', currentSortOrder)
                + genth("th_dtf","DTF","Distance to Finish",sortField == 'distanceToEnd', currentSortOrder)
                + genth("th_dtu","DTU","Distance to Us",sortField == 'distanceToUs', currentSortOrder) 
                + genth("th_brg","BRG","Bearing from Us", undefined)
                + genth("th_sail","Sail",undefined)
                + genth("th_state","State",undefined, sortField == 'state', currentSortOrder) 
                + genth("th_psn","Position",undefined)
                + genth("th_hdg","HDG","Heading", sortField == 'heading', currentSortOrder)
                + genth("th_twa","TWA","True Wind Angle", sortField == 'twa', currentSortOrder)
                + genth("th_tws","TWS","True Wind Speed",sortField == 'tws', currentSortOrder) 
                + genth("th_speed","Speed","Boat Speed",sortField == 'speed', currentSortOrder) 
                +  '</tr>';
        }
     
        function genth(id,content,title,sortfield,sortmark) {
            if(sortfield && sortmark != undefined) {
                content = content + " " + (sortmark ? '&#x25b2;' : '&#x25bc;');
            }
            return "<th id='" + id + "'"
                + (sortfield? " style='color:BlueViolet;'" : "")
                + (title ? (" title='" + title + "'") : "")
                + ">" + content + "</th>";
        }
     
        function commonHeaders() {
            return '<th>' + 'Rank' + '</th>'
                + '<th title="Distance To Leader">' + 'DTL' + '</th>'
                + '<th title="Distance To Finish">' + 'DTF' + '</th>'
                + '<th>' + 'Position' + '</th>'
                + '<th title="Heading">' + 'HDG' + '</th>'
                + '<th title="True Wind Angle">' + 'TWA' + '</th>'
                + '<th title="True Wind Speed">' + 'TWS' + '</th>'
                + '<th title="True Wind Direction"> ' + 'TWD' + '</th>'
                + '<th title="Auto TWA activated">' + 'aTWA' + '</th>'
                + '<th title="Auto Sail time remaining">' + 'aSail' + '</th>';
        }
     
        function makeFriendsHTML(rf) {
            var field = "speed";
            if (rf === undefined) {
                return "No friend positions received yet";
            } else {
                sortFriends(rf);
                return '<table style=\"width:100%\">'
                    + friendListHeader()
                    + Array.from(rf.table||[]).map(makeFriendListLine, rf).join(' ');
                    + '</table>';
            }
        }
     
        function makeTableHTML (r) {
            return '<table style="width:100%">'
                + tableHeader
                + (r === undefined?"":r.tableLines.join(' '))
                + '</table>';
        }
    [...]


    J'ai tenté la méthode avec "position: sticky", ce qui me donne ceci :
    dashboard.js
    Code JS : 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
     
    [...]
        var tableHeader =  '<thead class="sticky"><tr>'
            + '<th>' + 'Time' + '</th>'
            + commonHeaders()
            + '<th title="Reported speed">' + 'vR (kn)' + '</th>'
            + '<th title="Calculated speed (Δd/Δt)">' + 'vC (kn)' + '</th>'
            + '<th title="Polar-derived speed">' + 'vT (kn)' + '</th>'
            + '<th title="Foiling factor">' + 'Foils' + '</th>'
            + '<th title="Calculated distance">' + 'Δd (nm)' + '</th>'
            + '<th title="Time between positions">' + 'Δt (s)' + '</th>'
            + '<th title="Sail change time remaining">' + 'Sail' + '</th>'
            + '<th title="Gybing time remaining">' + 'Gybe' + '</th>'
            + '<th title="Tacking time remaining">' + 'Tack' + '</th>'
            + '</thead></tr>';
     
        function friendListHeader() {
            return '<thead class="sticky"><tr>'
                + genth("th_rt","RT","Call Router",sortField == 'none', undefined)
                + genth("th_name","Friend/Opponent",undefined, sortField == 'displayName', currentSortOrder) 
                + genth("th_lu","Last Update",undefined)
                + genth("th_rank","Rank",undefined, sortField == 'rank', currentSortOrder)
                + genth("th_dtf","DTF","Distance to Finish",sortField == 'distanceToEnd', currentSortOrder)
                + genth("th_dtu","DTU","Distance to Us",sortField == 'distanceToUs', currentSortOrder) 
                + genth("th_brg","BRG","Bearing from Us", undefined)
                + genth("th_sail","Sail",undefined)
                + genth("th_state","State",undefined, sortField == 'state', currentSortOrder) 
                + genth("th_psn","Position",undefined)
                + genth("th_hdg","HDG","Heading", sortField == 'heading', currentSortOrder)
                + genth("th_twa","TWA","True Wind Angle", sortField == 'twa', currentSortOrder)
                + genth("th_tws","TWS","True Wind Speed",sortField == 'tws', currentSortOrder) 
                + genth("th_speed","Speed","Boat Speed",sortField == 'speed', currentSortOrder) 
                +  '</thead></tr>';
        }
     
        function makeFriendsHTML(rf) {
            var field = "speed";
            if (rf === undefined) {
                return "No friend positions received yet";
            } else {
                sortFriends(rf);
                return '<table style=\"width:100%\">'
                    + friendListHeader()
                    + '<tbody>'
                    + Array.from(rf.table||[]).map(makeFriendListLine, rf).join(' ');
                    + '</tbody>'
                    + '</table>';
            }
        }
     
        function makeTableHTML (r) {
            return '<table style="width:100%">'
                + tableHeader
                + '<tbody>'
                + (r === undefined?"":r.tableLines.join(' '))
                + '</tbody>'
                + '</table>';
        }
    [...]

    style.css
    Code CSS : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    thead.sticky th {
        position: sticky;
        top: 0; 
        background-color: white;
        outline: 1px solid black;
        outline-offset: -1px;
    }

    Sans outline et outline-offset je perds la bordure lors du scroll, avec je me retrouve avec quelque chose en gras horrible ...

    J'ai essayé une autre méthode avec display: block et une classe sur table mais le rendu est encore pire.

    Je m'y prends mal surement ... vous aborderiez ça de quelle manière ?

    Merci

  2. #2
    Invité
    Invité(e)
    Par défaut
    Bonjour,

    On t'a fourni un script qui fonctionne.

    A toi d'adapter la structure HTML de ta table.

  3. #3
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Bonjour jreaux62,
    Ok j'vais essayer d'adapter ça.
    J'voyais ça moins complexe que la fois dernière puisqu'il n'a à pas de redimensionnement et me disait qu'il était possible d'utiliser une méthode plus "classique".
    Merci

  4. #4
    Invité
    Invité(e)
    Par défaut
    Sinon, en cherchant un peu (encore!) :


    Mais bon.
    Tu ne vas pas changer de script à chaque fois que tu changes de slip...


    [EDIT] J'ai retrouvé mon script (v3) : https://codepen.io/jreaux62/pen/eLoOKM
    (tu as de la chance, hier j'ai effacé plusieurs de mes codepen... dont les v1 et v2...)

    La structure de la table doit être :
    Code html : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
      <div class="table-wrap table-thead-fixed" data-nbreligne="12">
        <table>
          <thead>...</thead>
          <tbody>...</tbody>
        </table>
      </div>
    Dernière modification par Invité ; 09/11/2018 à 14h37.

  5. #5
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Ok merci jreaux62.

    Si je comprends bien les modifications doivent se faire uniquement dans ces 2 fonctions ?
    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
    function makeFriendsHTML(rf) {
        var field = "speed";
        if (rf === undefined) {
            return "No friend positions received yet";
        } else {
            sortFriends(rf);
            return '<table style=\"width:100%\">' +
                friendListHeader() +
                Array.from(rf.table || []).map(makeFriendListLine, rf).join(' '); +
            '</table>';
        }
    }
     
    function makeTableHTML(r) {
        return '<table style="width:100%">' +
            tableHeader +
            (r === undefined ? "" : r.tableLines.join(' ')) +
            '</table>';
    }
    Ou je suis encore à coté de la plaque ? ...

  6. #6
    Invité
    Invité(e)
    Par défaut
    1- Oui, à priori, il faut ajouter icicle <div> avec les bonnes classes.

    2- Attention : dans le script précédent, on avait un id="pointsTable" sur le <tbody> !
    Là, j'avoue qu'il va falloir se replonger dans le script...

    "à priori" (toujours), il suffit de supprimer les lignes :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    		// ----------
    		// SPECIAL : on change l id "pointsTable" -> "pointsTable2"
    		document.querySelector('.theader-fixed #pointsTable').id = 'pointsTable2';
    (lignes qui furent ajoutées spécifiquement)

  7. #7
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Ok je comprend mieux comment mettre ça en oeuvre maintenant
    Je vais tester
    Merci

    Edit: correction orthographe
    Je pense pas être le pire sur l'orthographe, je fais attention mise à part quelques contractions ... mais bon si ça pique les yeux je le marquerais en toutes lettres

  8. #8
    Invité
    Invité(e)
    Par défaut
    Citation Envoyé par rlelamer Voir le message
    Ok j'comprend ...
    J'vais ...
    Tu sais que ça ne te prendrait pas plus de temps d'écrire correctement en "bon français" :

    Ok je comprend ...
    Je vais ...
    ?

  9. #9
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Corrigé ...

  10. #10
    Invité
    Invité(e)
    Par défaut
    Citation Envoyé par rlelamer Voir le message
    Je pense pas être le pire sur l'orthographe, je fais attention mise à part quelques contractions...
    Tu as parfaitement raison : je n'ai rien à dire sur ton orthographe, ta grammaire ou ta syntaxe !

    Alors : à quoi bon faire des contractions ?
    "ça ne pique pas les yeux", mais ça fait un peu "cheveu dans la soupe"... C'est dommage de gâcher...


    Bon. Ceci dit... Alors ? Ça fonctionne ou pas ?

  11. #11
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Donc voici comment j'ai mis ça en oeuvre.

    Dans mon fichier HTML, j'ai ajouté cette ligne:
    Code HTML : Sélectionner tout - Visualiser dans une fenêtre à part
    <script src="resizeTables.js"></script>

    Dans dashboard.js, j'ai modifié les fonctions comme ceci :
    Code JS : 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
        function makeFriendsHTML(rf) {
            var field = "speed";
            if (rf === undefined) {
                return "No friend positions received yet";
            } else {
                sortFriends(rf);
                return '<div class="table-wrap table-thead-fixed">'
                    + '<table style="width:100%">'
                    + '<thead>'
                    + friendListHeader()
                    + '</thead>'
    		+ '<tbody>'
                    + Array.from(rf.table||[]).map(makeFriendListLine, rf).join(' ');
    		+ '</tbody>'
                    + '</table>'
                    + '</div>';
            }
        }
     
        function makeTableHTML (r) {
            return '<div class="table-wrap table-thead-fixed">'
                + '<table style="width:100%">'
                + '<thead>'
                + tableHeader
                + '</thead>'
    	    + '<tbody>'
                + (r === undefined?"":r.tableLines.join(' '))
    	    + '</tbody>'
                + '</table>';
                + '</div>';
        }

    Dans le fichier style.css, j'ai ajouté ceci :
    Code CSS : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    .thead-fixed {
        z-index: 1;
        position: absolute;
        overflow: hidden;
        background: #FFF;
    }
     
    .tbody-scroll {
        position: relative;
        overflow: auto;
    }

    J'ai le script resizeTables.js à la racine de mon dossier d'extension dans lequel j'ai supprimé la ligne :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    document.querySelector('.theader-fixed #pointsTable').id = 'pointsTable2';
    J'ai pas de thead fixe et tbody scroll et dans la console j'ai ceci :
    Nom : Capture d’écran 2018-11-09 à 15.44.42.png
Affichages : 568
Taille : 49,5 Ko

  12. #12
    Invité
    Invité(e)
    Par défaut
    OK.

    1- On trouve getBoundingClientRect dans le script resizeTables.js, et plus précisément dans la fonction table_thead_fixed_resize() :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    // --------------------
    // Redimensionnement de la fenêtre (horizontal)
    function table_thead_fixed_resize() 
    {
    ...
    		// ----------
    		// nombre de lignes à montrer
    		let nbLigneToShow = Math.min(nbLigne, tableRef.rows.length) + 1;
    		let rect1 = tableRef.rows[0].getBoundingClientRect();
    		let rect2 = tableRef.rows[nbLigneToShow].getBoundingClientRect();
    		tableBodyScroll.style.height = rect2.top - rect1.top + hScrollBar + "px";
    ...

    2- Pour en dire plus, il faudrait nous montrer le code HTML généré par makeTableHTML (r). (via l'Inspecteur du navigateur)

    Normalement, on devrait trouver cette structure :
    Code html : 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
    <div class="table-wrap table-thead-fixed" data-nbreligne="12">
    	<div class="theader-fixed" style=".....">
    	<table>
    	  <thead>
    		<tr>
    		  <th>...</th>
    		  <th>...</th>
    		</tr>
    	  </thead>
    	  <tbody id="pointsTable" align="center">
    		<tr>
    		  <td>...</td>
    		  <td>...</td>
    		</tr>
    	  </tbody>
    	</table>
    	</div>
     
        <div class="tbody-scroll" style="height: 247px;">
    	<table>
    	  <thead>
    		<tr>
    		  <th>...</th>
    		  <th>...</th>
    		</tr>
    	  </thead>
    	  <tbody id="pointsTable" align="center">
    		<tr>
    		  <td>...</td>
    		  <td>...</td>
    		</tr>
    	  </tbody>
    	</table>
    	</div>
    </div>
    Dernière modification par Invité ; 09/11/2018 à 16h28.

  13. #13
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Ça c'est dans mes cordes.

    Code HTML : 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
    916
    917
    918
    919
    920
    921
    922
    923
    924
    925
    926
    927
    928
    929
    930
    931
    932
    933
    934
    935
    936
    937
    938
    939
    940
    941
    942
    943
    944
    945
    946
    947
    948
    949
    950
    951
    952
    953
    954
    955
    956
    957
    958
    959
    960
    961
    962
    963
    964
    965
    966
    967
    968
    969
    970
    971
    972
    973
    974
    975
    976
    977
    978
    979
    980
    981
    982
    983
    984
    985
    986
    987
    988
    989
    990
    991
    992
    993
    994
    995
    996
    997
    998
    999
    1000
    1001
    1002
    1003
    1004
    1005
    1006
    1007
    1008
    1009
    1010
    1011
    1012
    1013
    1014
    1015
    1016
    1017
    1018
    1019
    1020
    1021
    1022
    1023
    1024
    1025
    1026
    1027
    1028
    1029
    1030
    1031
    1032
    1033
    1034
    1035
    1036
    1037
    1038
    1039
    1040
    1041
    1042
    1043
    1044
    1045
    1046
    1047
    1048
    1049
    1050
    1051
    1052
    1053
    1054
    1055
    1056
    1057
    1058
    1059
    1060
    1061
    1062
    1063
    1064
    1065
    1066
    1067
    1068
    1069
    1070
    1071
    1072
    1073
    1074
    1075
    1076
    1077
    1078
    1079
    1080
    1081
    1082
    1083
    1084
    1085
    1086
    1087
    1088
    1089
    1090
    1091
    1092
    1093
    1094
    1095
    1096
    1097
    1098
    1099
    1100
    1101
    1102
    1103
    1104
    1105
    1106
    1107
    1108
    1109
    1110
    1111
    1112
    1113
    1114
    1115
    1116
    1117
    1118
    1119
    1120
    1121
    1122
    1123
    1124
    1125
    1126
    1127
    1128
    1129
    1130
    1131
    1132
    1133
    1134
    1135
    1136
    1137
    1138
    1139
    1140
    1141
    1142
    1143
    1144
    1145
    1146
    1147
    1148
    1149
    1150
    1151
    1152
    1153
    1154
    1155
    1156
    1157
    1158
    1159
    1160
    1161
    1162
    1163
    1164
    1165
    1166
    1167
    1168
    1169
    1170
    1171
    1172
    1173
    1174
    1175
    1176
    1177
    1178
    1179
    1180
    1181
    1182
    1183
    1184
    1185
    1186
    1187
    1188
    1189
    1190
    1191
    1192
    1193
    1194
    1195
    1196
    1197
    1198
    1199
    1200
    1201
    1202
    1203
    1204
    1205
    1206
    1207
    1208
    1209
    1210
    1211
    1212
    1213
    1214
    1215
    1216
    1217
    1218
    1219
    1220
    1221
    1222
    1223
    1224
    1225
    1226
    1227
    1228
    1229
    1230
    1231
    1232
    1233
    1234
    1235
    1236
    1237
    1238
    1239
    1240
    1241
    1242
    1243
    1244
    1245
    1246
    1247
    1248
    1249
    1250
    1251
    1252
    1253
    1254
    1255
    <html>
     
    <head>
        <meta charset="utf-8">
        <title>VR Dashboard</title>
        <link rel="icon" href="zicon.png">
        <link rel="stylesheet" href="style.css">
        <script src="https://maps.googleapis.com/maps/api/js?key=AIzaSyC6bZY8_KuFSGpU5CybugndmQmbFM4fLuU"></script>
        <script src="dashboard.js"></script>
        <script src="resizeTables.js"></script>
        <script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/34/16/intl/fr_ALL/common.js"></script>
        <script type="text/javascript" charset="UTF-8" src="https://maps.googleapis.com/maps-api-v3/api/js/34/16/intl/fr_ALL/util.js"></script>
    </head>
     
    <body>
        <div class="container">
            <div class="top">
                <div class="flexrow">
                    <div>
                        <label><b>Boat</b></label>
                        <label id="lb_boatname">GeGaX-EZ</label>
                    </div>
                    <div>
                        <label>Select Race</label>
                        <select id="sel_race" name="race">
                            <option value="383.1">ULTIME</option>
                            <option value="384.1">IMOCA</option>
                            <option value="385.1" disabled="">Multi 50</option>
                            <option value="386.1" disabled="">Class 40</option>
                            <option value="379.4" disabled="">Odyssey 4</option>
                            <option value="379.3" disabled="">Odyssey 3</option>
                        </select>
                        <button id="bt_router">Go</button>
                    </div>
                    <div>
                        <input type="checkbox" id="auto_router" checked="">
                        <label>Auto router window</label>
                    </div>
                    <div>
                        <input type="checkbox" id="reuse_tab" checked="">
                        <label>Reuse tabs</label>
                    </div>
                    <div>
                        <input type="checkbox" id="local_time">
                        <label>Local times</label>
                    </div>
                    <div>
                        <label>Version</label>
                        <label id="lb_version">3.0.3</label>
                    </div>
                </div>
                <div id="raceStatus">
                    <table style="width:100%">
                        <tbody>
                            <tr>
                                <th title="Call Router">RT</th>
                                <th title="Call Polars">PL</th>
                                <th title="Call WindInfo">WI</th>
                                <th>Race</th>
                                <th>Rank</th>
                                <th title="Distance To Leader">DTL</th>
                                <th title="Distance To Finish">DTF</th>
                                <th>Position</th>
                                <th title="Heading">HDG</th>
                                <th title="True Wind Angle">TWA</th>
                                <th title="True Wind Speed">TWS</th>
                                <th title="True Wind Direction"> TWD</th>
                                <th title="Auto TWA activated">aTWA</th>
                                <th title="Auto Sail time remaining">aSail</th>
                                <th title="Boat speed">Speed</th>
                                <th>Options</th>
                                <th>Cards</th>
                                <th title="Time to next barrel">Pack</th>
                                <th title="Boat is aground">Agnd</th>
                                <th title="Stealth mode">Stlt</th>
                                <th title="Boat is maneuvering, half speed">Mnvr</th>
                                <th>Last Command</th>
                            </tr>
                            <tr class="hov sel" id="rs:383.1">
                                <td class="tdc"><span id="rt:383.1"></span></td>
                                <td class="tdc"><span id="pl:383.1"></span></td>
                                <td class="tdc"><span id="wi:383.1"><img class="icon" src="wind.svg"></span></td>
                                <td>ULTIME</td>
                                <td>1037</td>
                                <td>91.31</td>
                                <td>1339.2</td>
                                <td>29°03'05"N 42°39'44"W</td>
                                <td style="color:black;font-weight: normal;">224.3</td>
                                <td style="color:red;font-weight: bold;">140.8</td>
                                <td>13.51</td>
                                <td>83.5</td>
                                <td>Yes</td>
                                <td style="background-color:lightgreen;">LG (Man)</td>
                                <td>18.54</td>
                                <td>Full</td>
                                <td>Full</td>
                                <td>N/A</td>
                                <td style="background-color:lightgreen;">No</td>
                                <td>No</td>
                                <td>No</td>
                                <td style="background-color:;">T:14:59:00 Actions: TWA=-140.8</td>
                            </tr>
                            <tr class="hov" id="rs:384.1">
                                <td class="tdc"><span id="rt:384.1"></span></td>
                                <td class="tdc"><span id="pl:384.1"></span></td>
                                <td class="tdc"><span id="wi:384.1"><img class="icon" src="wind.svg"></span></td>
                                <td>IMOCA</td>
                                <td>67102</td>
                                <td>663.33</td>
                                <td>2561.9</td>
                                <td>48°26'51"N 42°53'19"W</td>
                                <td style="color:blue;font-weight: bold;">209.2</td>
                                <td style="color:green;">76.8</td>
                                <td>31.25</td>
                                <td>286</td>
                                <td>No</td>
                                <td style="background-color:lightgreen;">Stay (Man)</td>
                                <td>17.7</td>
                                <td>Full</td>
                                <td> HL:11 WF:2 AS:8 WP:8 PR:7 SM:0</td>
                                <td>05h08m</td>
                                <td style="background-color:lightgreen;">No</td>
                                <td>No</td>
                                <td>No</td>
                                <td style="background-color:;">-</td>
                            </tr>
                        </tbody>
                    </table>
                </div>
                <ul class="tabs">
                    <li class="tab">
                        <input type="radio" name="tabs" checked="checked" id="ts:1">
                        <label for="ts:1">Race Log</label>
                    </li>
                    <li class="tab">
                        <input type="radio" name="tabs" id="ts:2">
                        <label for="ts:2">Friends/Opponents</label>
                    </li>
                    <li class="tab">
                        <input type="radio" name="tabs" id="ts:4">
                        <label for="ts:4">Map</label>
                    </li>
                    <li class="tab">
                        <input type="radio" name="tabs" id="ts:3">
                        <label for="ts:3">Raw Log</label>
                    </li>
                </ul>
            </div>
            <div id="tab-content1" class="content" style="display: block;">
                <div id="recordlog">
                    <div class="table-wrap table-thead-fixed">
                        <table style="width:100%">
                            <thead>
                                <tr>
                                    <th>Time</th>
                                    <th>Rank</th>
                                    <th title="Distance To Leader">DTL</th>
                                    <th title="Distance To Finish">DTF</th>
                                    <th>Position</th>
                                    <th title="Heading">HDG</th>
                                    <th title="True Wind Angle">TWA</th>
                                    <th title="True Wind Speed">TWS</th>
                                    <th title="True Wind Direction"> TWD</th>
                                    <th title="Auto TWA activated">aTWA</th>
                                    <th title="Auto Sail time remaining">aSail</th>
                                    <th title="Reported speed">vR (kn)</th>
                                    <th title="Calculated speed (Δd/Δt)">vC (kn)</th>
                                    <th title="Polar-derived speed">vT (kn)</th>
                                    <th title="Foiling factor">Foils</th>
                                    <th title="Calculated distance">Δd (nm)</th>
                                    <th title="Time between positions">Δt (s)</th>
                                    <th title="Sail change time remaining">Sail</th>
                                    <th title="Gybing time remaining">Gybe</th>
                                    <th title="Tacking time remaining">Tack</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr>
                                    <td>09/11/2018 à 15:04:27 UTC</td>
                                    <td>1040</td>
                                    <td>91.04</td>
                                    <td>1339.2</td>
                                    <td>29°03'05"N 42°39'44"W</td>
                                    <td style="color:black;font-weight: normal;">224.3</td>
                                    <td style="color:red;font-weight: bold;">140.8</td>
                                    <td>13.51</td>
                                    <td>83.5</td>
                                    <td>Yes</td>
                                    <td style="background-color:lightgreen;">LG (Man)</td>
                                    <td>18.54</td>
                                    <td>18.54 (LG)</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>1.528</td>
                                    <td>297</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>-</td>
                                </tr>
                                <tr>
                                    <td>09/11/2018 à 14:59:30 UTC</td>
                                    <td>1038</td>
                                    <td>90.71</td>
                                    <td>1340.6</td>
                                    <td>29°04'11"N 42°38'31"W</td>
                                    <td style="color:black;font-weight: normal;">224.3</td>
                                    <td style="color:red;font-weight: bold;">140.8</td>
                                    <td>13.51</td>
                                    <td>83.6</td>
                                    <td>Yes</td>
                                    <td style="background-color:lightgreen;">LG (Man)</td>
                                    <td>18.53</td>
                                    <td style="background-color: yellow;">18.31 (LG)</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>0.884</td>
                                    <td>174</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>-</td>
                                </tr>
                                <tr>
                                    <td>09/11/2018 à 14:59:00 UTC</td>
                                    <td colspan="3">Command @14:58:22</td>
                                    <td colspan="16">Actions: TWA=-140.8</td>
                                </tr>
                                <tr>
                                    <td>09/11/2018 à 14:56:36 UTC</td>
                                    <td>1044</td>
                                    <td>-</td>
                                    <td>1341.5</td>
                                    <td>29°04'48"N 42°37'48"W</td>
                                    <td style="color:black;font-weight: normal;">225.4</td>
                                    <td style="color:red;font-weight: bold;">141.7</td>
                                    <td>13.46</td>
                                    <td>83.7</td>
                                    <td>Yes</td>
                                    <td style="background-color:lightgreen;">LG (Man)</td>
                                    <td>18.24</td>
                                    <td>18.24 (LG)</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>0.637</td>
                                    <td>126</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>-</td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
            <div id="tab-content2" class="content hidden" style="display: none;">
                <div id="friendList">
                    <div class="table-wrap table-thead-fixed">
                        <table style="width:100%">
                            <thead>
                                <tr>
                                    <th id="th_rt" style="color:BlueViolet;" title="Call Router">RT</th>
                                    <th id="th_name">Friend/Opponent</th>
                                    <th id="th_lu">Last Update</th>
                                    <th id="th_rank">Rank</th>
                                    <th id="th_dtf" title="Distance to Finish">DTF</th>
                                    <th id="th_dtu" title="Distance to Us">DTU</th>
                                    <th id="th_brg" title="Bearing from Us">BRG</th>
                                    <th id="th_sail">Sail</th>
                                    <th id="th_state">State</th>
                                    <th id="th_psn">Position</th>
                                    <th id="th_hdg" title="Heading">HDG</th>
                                    <th id="th_twa" title="True Wind Angle">TWA</th>
                                    <th id="th_tws" title="True Wind Speed">TWS</th>
                                    <th id="th_speed" title="Boat Speed">Speed</th>
                                </tr>
                            </thead>
                            <tbody>
                                <tr class="hov" id="ui:59d3e7ccb395b292ed63e917">
                                    <td class="tdc"><span id="rt:59d3e7ccb395b292ed63e917"></span></td>
                                    <td style="">85 LE RENARD 85-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1243.3)</td>
                                    <td>125.6</td>
                                    <td>176.1°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°59'27"N 42°28'18"W</td>
                                    <td>225.7</td>
                                    <td style="color:red;">137.6</td>
                                    <td>13.9</td>
                                    <td>19.64</td>
                                </tr>
                                <tr class="hov" id="ui:59c0fcd3b395b292ed6212a0">
                                    <td class="tdc"><span id="rt:59c0fcd3b395b292ed6212a0"></span></td>
                                    <td style="font-weight: bold; ">Big Bird @zezo.org</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1289.4)</td>
                                    <td>9.4</td>
                                    <td>239.7°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>29°00'05"N 42°47'03"W</td>
                                    <td>225.5</td>
                                    <td style="color:red;">142.2</td>
                                    <td>13.6</td>
                                    <td>18.22</td>
                                </tr>
                                <tr class="hov" id="ui:59ce5490b395b292ed630dba">
                                    <td class="tdc"><span id="rt:59ce5490b395b292ed630dba"></span></td>
                                    <td style="font-weight: bold; ">cami31</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1232.8)</td>
                                    <td>259.3</td>
                                    <td>167.6°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>24°51'16"N 41°36'41"W</td>
                                    <td>225.6</td>
                                    <td style="color:red;">140</td>
                                    <td>17</td>
                                    <td>23.06</td>
                                </tr>
                                <tr class="hov" id="ui:59c0f5e0b395b292ed62121c">
                                    <td class="tdc"><span id="rt:59c0f5e0b395b292ed62121c"></span></td>
                                    <td style="">Commandant Mitchell</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1240.3)</td>
                                    <td>127</td>
                                    <td>177.4°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°57'55"N 42°31'17"W</td>
                                    <td>222.4</td>
                                    <td style="color:red;">134.2</td>
                                    <td>13.9</td>
                                    <td>20.42</td>
                                </tr>
                                <tr class="hov" id="ui:59c5f7e6b395b292ed6286bb">
                                    <td class="tdc"><span id="rt:59c5f7e6b395b292ed6286bb"></span></td>
                                    <td style="">Domtom974</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1244.1)</td>
                                    <td>110</td>
                                    <td>179.4°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°14'47"N 42°36'28"W</td>
                                    <td>228.7</td>
                                    <td style="color:red;">140.4</td>
                                    <td>13</td>
                                    <td>18.09</td>
                                </tr>
                                <tr class="hov" id="ui:59c5ea7eb395b292ed6285fb">
                                    <td class="tdc"><span id="rt:59c5ea7eb395b292ed6285fb"></span></td>
                                    <td style="">doumsau-45-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1439.4)</td>
                                    <td>-163.3</td>
                                    <td>89.8°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>29°03'06"N 39°30'57"W</td>
                                    <td>221.7</td>
                                    <td style="color:red;">140</td>
                                    <td>12.4</td>
                                    <td>16.72</td>
                                </tr>
                                <tr class="hov" id="ui:59c0f22ab395b292ed6211c0">
                                    <td class="tdc"><span id="rt:59c0f22ab395b292ed6211c0"></span></td>
                                    <td style="font-weight: bold; ">Gameuro.SGPS-EZ974</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1276.3)</td>
                                    <td>22.5</td>
                                    <td>240.5°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>28°53'41"N 43°00'11"W</td>
                                    <td>223.9</td>
                                    <td style="color:red;">140.4</td>
                                    <td>13.3</td>
                                    <td>18.36</td>
                                </tr>
                                <tr class="hov" id="ui:59c4cfb2b395b292ed62662f">
                                    <td class="tdc"><span id="rt:59c4cfb2b395b292ed62662f"></span></td>
                                    <td style="font-weight: bold; ">gauloix</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1232.7)</td>
                                    <td>141.5</td>
                                    <td>178.1°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>26°43'25"N 42°32'27"W</td>
                                    <td>223</td>
                                    <td style="color:red;">135.2</td>
                                    <td>14.3</td>
                                    <td>20.65</td>
                                </tr>
                                <tr class="hov" id="ui:59edce08e0750e372d660d08">
                                    <td class="tdc"><span id="rt:59edce08e0750e372d660d08"></span></td>
                                    <td style="font-weight: bold; ">Giom-Illaume</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1474.1)</td>
                                    <td>-228.9</td>
                                    <td>100.5°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>28°19'04"N 38°22'08"W</td>
                                    <td>301.7</td>
                                    <td style="color:green;">133.1</td>
                                    <td>14</td>
                                    <td>19.49</td>
                                </tr>
                                <tr class="hov" id="ui:59c0e70db395b292ed621108">
                                    <td class="tdc"><span id="rt:59c0e70db395b292ed621108"></span></td>
                                    <td style="font-weight: bold; ">Griffon dort -EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1232.7)</td>
                                    <td>119.8</td>
                                    <td>183.2°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°05'12"N 42°45'12"W</td>
                                    <td>224.6</td>
                                    <td style="color:red;">135.8</td>
                                    <td>13.8</td>
                                    <td>19.88</td>
                                </tr>
                                <tr class="hov" id="ui:59c0f5c5b395b292ed621218">
                                    <td class="tdc"><span id="rt:59c0f5c5b395b292ed621218"></span></td>
                                    <td style="font-weight: bold; ">HRobertEZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1277.2)</td>
                                    <td>22.4</td>
                                    <td>222.7°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>28°48'21"N 42°55'08"W</td>
                                    <td>226</td>
                                    <td style="color:red;">142.3</td>
                                    <td>13.1</td>
                                    <td>17.71</td>
                                </tr>
                                <tr class="hov" id="ui:59ff465a7b296eaadfbfc0ad">
                                    <td class="tdc"><span id="rt:59ff465a7b296eaadfbfc0ad"></span></td>
                                    <td style="font-weight: bold; ">Huasipungo</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1426.9)</td>
                                    <td>-325.7</td>
                                    <td>130.5°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>25°28'39"N 38°03'34"W</td>
                                    <td>219.2</td>
                                    <td style="color:red;">137.9</td>
                                    <td>14.8</td>
                                    <td>20.13</td>
                                </tr>
                                <tr class="hov" id="ui:59fd9d46e0750e372d68c07f">
                                    <td class="tdc"><span id="rt:59fd9d46e0750e372d68c07f"></span></td>
                                    <td style="font-weight: bold; ">kohann</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1247.2)</td>
                                    <td>107.6</td>
                                    <td>178.2°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°17'19"N 42°33'59"W</td>
                                    <td>223</td>
                                    <td style="color:red;">134.8</td>
                                    <td>12.9</td>
                                    <td>18.96</td>
                                </tr>
                                <tr class="hov" id="ui:59d4ddb9b395b292ed6406e8">
                                    <td class="tdc"><span id="rt:59d4ddb9b395b292ed6406e8"></span></td>
                                    <td style="">johnbzh</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1433.5)</td>
                                    <td>-149</td>
                                    <td>84.1°</td>
                                    <td>C0</td>
                                    <td>racing</td>
                                    <td>29°18'17"N 39°47'51"W</td>
                                    <td>210.5</td>
                                    <td style="color:red;">127.8</td>
                                    <td>11.7</td>
                                    <td>17.88</td>
                                </tr>
                                <tr class="hov" id="ui:59c15eddb395b292ed621bb5">
                                    <td class="tdc"><span id="rt:59c15eddb395b292ed621bb5"></span></td>
                                    <td style="font-weight: bold; ">Songolive-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1252.4)</td>
                                    <td>91.8</td>
                                    <td>179.6°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°33'01"N 42°37'00"W</td>
                                    <td>226</td>
                                    <td style="color:red;">137.7</td>
                                    <td>12</td>
                                    <td>17.43</td>
                                </tr>
                                <tr class="hov" id="ui:59c1527db395b292ed621abd">
                                    <td class="tdc"><span id="rt:59c1527db395b292ed621abd"></span></td>
                                    <td style="">juraEZic</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1264.4)</td>
                                    <td>86.7</td>
                                    <td>172.6°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>27°38'48"N 42°25'07"W</td>
                                    <td>219.6</td>
                                    <td style="color:red;">131.1</td>
                                    <td>11.5</td>
                                    <td>17.95</td>
                                </tr>
                                <tr class="hov" id="ui:59c1109ab395b292ed62149e">
                                    <td class="tdc"><span id="rt:59c1109ab395b292ed62149e"></span></td>
                                    <td style="font-weight: bold; ">kergromo</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1221.8)</td>
                                    <td>142</td>
                                    <td>182.9°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°42'58"N 42°45'56"W</td>
                                    <td>228.5</td>
                                    <td style="color:red;">140.2</td>
                                    <td>14.5</td>
                                    <td>19.98</td>
                                </tr>
                                <tr class="hov" id="ui:59c1499ab395b292ed6219d7">
                                    <td class="tdc"><span id="rt:59c1499ab395b292ed6219d7"></span></td>
                                    <td style="font-weight: bold; ">kramaouet</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1283.4)</td>
                                    <td>15.5</td>
                                    <td>242.7°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>28°57'42"N 42°53'29"W</td>
                                    <td>302.9</td>
                                    <td style="color:green;">140.4</td>
                                    <td>13.5</td>
                                    <td>18.6</td>
                                </tr>
                                <tr class="hov" id="ui:59c143e7b395b292ed621938">
                                    <td class="tdc"><span id="rt:59c143e7b395b292ed621938"></span></td>
                                    <td style="font-weight: bold; ">M63-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1228.6)</td>
                                    <td>140.4</td>
                                    <td>180.1°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°44'26"N 42°38'11"W</td>
                                    <td>228.1</td>
                                    <td style="color:red;">140</td>
                                    <td>14.4</td>
                                    <td>19.82</td>
                                </tr>
                                <tr class="hov" id="ui:59f7423be0750e372d67d792">
                                    <td class="tdc"><span id="rt:59f7423be0750e372d67d792"></span></td>
                                    <td style="">mansafran</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1229.9)</td>
                                    <td>133.1</td>
                                    <td>181.1°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>26°51'45"N 42°40'44"W</td>
                                    <td>228.1</td>
                                    <td style="color:red;">139.8</td>
                                    <td>14.2</td>
                                    <td>19.6</td>
                                </tr>
                                <tr class="hov" id="ui:59d2572eb395b292ed63a8fe">
                                    <td class="tdc"><span id="rt:59d2572eb395b292ed63a8fe"></span></td>
                                    <td style="font-weight: bold; ">Marius Jacob - EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1243.5)</td>
                                    <td>110.2</td>
                                    <td>179.7°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>27°14'39"N 42°37'07"W</td>
                                    <td>224</td>
                                    <td style="color:red;">135.7</td>
                                    <td>13.1</td>
                                    <td>19.06</td>
                                </tr>
                                <tr class="hov" id="ui:59c54701b395b292ed62760c">
                                    <td class="tdc"><span id="rt:59c54701b395b292ed62760c"></span></td>
                                    <td style="">Patcash2a-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1269.2)</td>
                                    <td>84.4</td>
                                    <td>169.8°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>27°41'44"N 42°20'50"W</td>
                                    <td>221.1</td>
                                    <td style="color:red;">132.6</td>
                                    <td>11.3</td>
                                    <td>17.47</td>
                                </tr>
                                <tr class="hov" id="ui:59c15ea0b395b292ed621baa">
                                    <td class="tdc"><span id="rt:59c15ea0b395b292ed621baa"></span></td>
                                    <td style="font-weight: bold; ">RIC49</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1227.6)</td>
                                    <td>140.8</td>
                                    <td>180.5°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>26°44'00"N 42°39'11"W</td>
                                    <td>228.4</td>
                                    <td style="color:red;">140.3</td>
                                    <td>14.4</td>
                                    <td>19.75</td>
                                </tr>
                                <tr class="hov" id="ui:59c154bab395b292ed621af2">
                                    <td class="tdc"><span id="rt:59c154bab395b292ed621af2"></span></td>
                                    <td style="">Marcusbelgicus</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1231)</td>
                                    <td>137.7</td>
                                    <td>179.6°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>26°47'08"N 42°36'45"W</td>
                                    <td>227</td>
                                    <td style="color:red;">139</td>
                                    <td>14.3</td>
                                    <td>19.9</td>
                                </tr>
                                <tr class="hov" id="ui:59c0e543b395b292ed6210ed">
                                    <td class="tdc"><span id="rt:59c0e543b395b292ed6210ed"></span></td>
                                    <td style="font-weight: bold; ">Mousse Line</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1346)</td>
                                    <td>-76</td>
                                    <td>110.4°</td>
                                    <td>Spi (Auto)</td>
                                    <td>racing</td>
                                    <td>28°37'51"N 41°16'38"W</td>
                                    <td>225.1</td>
                                    <td style="color:red;">139.8</td>
                                    <td>12.8</td>
                                    <td>17.09</td>
                                </tr>
                                <tr class="hov" id="ui:59fc6920e0750e372d687f9b">
                                    <td class="tdc"><span id="rt:59fc6920e0750e372d687f9b"></span></td>
                                    <td style="font-weight: bold; ">Romyna</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1529.6)</td>
                                    <td>-406.9</td>
                                    <td>119.7°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>25°33'47"N 36°06'06"W</td>
                                    <td>217.8</td>
                                    <td style="color:red;">139.6</td>
                                    <td>14.1</td>
                                    <td>18.47</td>
                                </tr>
                                <tr class="hov" id="ui:59c0db55b395b292ed621025">
                                    <td class="tdc"><span id="rt:59c0db55b395b292ed621025"></span></td>
                                    <td style="">Bistrakou-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1238)</td>
                                    <td>117</td>
                                    <td>181°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>27°07'49"N 42°40'05"W</td>
                                    <td>225.2</td>
                                    <td style="color:red;">136.6</td>
                                    <td>13.5</td>
                                    <td>19.41</td>
                                </tr>
                                <tr class="hov" id="ui:59c0d9bdb395b292ed621005">
                                    <td class="tdc"><span id="rt:59c0d9bdb395b292ed621005"></span></td>
                                    <td style="font-weight: bold; color: BlueViolet;">RustyStaub_EZ(Saint Malo Grande Passerelle)</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1371)</td>
                                    <td>-136.1</td>
                                    <td>117.9°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>27°59'57"N 40°21'33"W</td>
                                    <td>213.3</td>
                                    <td style="color:red;">128.6</td>
                                    <td>13.6</td>
                                    <td>19.69</td>
                                </tr>
                                <tr class="hov" id="ui:59fcb614e0750e372d688ff5">
                                    <td class="tdc"><span id="rt:59fcb614e0750e372d688ff5"></span></td>
                                    <td style="font-weight: bold; ">SACRE IDEM</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1553.9)</td>
                                    <td>-468.7</td>
                                    <td>122.4°</td>
                                    <td>Spi (Auto)</td>
                                    <td>racing</td>
                                    <td>24°41'58"N 35°22'27"W</td>
                                    <td>217.7</td>
                                    <td style="color:red;">140.4</td>
                                    <td>16.3</td>
                                    <td>20.9</td>
                                </tr>
                                <tr class="hov" id="ui:59cc0088b395b292ed62e312">
                                    <td class="tdc"><span id="rt:59cc0088b395b292ed62e312"></span></td>
                                    <td style="">Titoff50-EZ</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1227.6)</td>
                                    <td>143.9</td>
                                    <td>179.9°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°40'57"N 42°37'24"W</td>
                                    <td>227</td>
                                    <td style="color:red;">139</td>
                                    <td>14.4</td>
                                    <td>20.15</td>
                                </tr>
                                <tr class="hov" id="ui:59c0d4c0b395b292ed620f9f">
                                    <td class="tdc"><span id="rt:59c0d4c0b395b292ed620f9f"></span></td>
                                    <td style="font-weight: bold; ">toxcct</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1282.3)</td>
                                    <td>47.2</td>
                                    <td>168.9°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>28°18'28"N 42°27'28"W</td>
                                    <td>225</td>
                                    <td style="color:red;">138.6</td>
                                    <td>11.5</td>
                                    <td>16.21</td>
                                </tr>
                                <tr class="hov" id="ui:5a1575457b296eaadfc427ca">
                                    <td class="tdc"><span id="rt:5a1575457b296eaadfc427ca"></span></td>
                                    <td style="">CapKermit</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>1</td>
                                    <td>(1207.1)</td>
                                    <td>165.2</td>
                                    <td>184.2°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°20'00"N 42°51'18"W</td>
                                    <td>223</td>
                                    <td style="color:red;">135.2</td>
                                    <td>15.1</td>
                                    <td>21.71</td>
                                </tr>
                                <tr class="hov" id="ui:5bdca802517022fc09d4d4f5">
                                    <td class="tdc"><span id="rt:5bdca802517022fc09d4d4f5"></span></td>
                                    <td style="">Eddy Energy</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>28</td>
                                    <td>(1225.1)</td>
                                    <td>144.7</td>
                                    <td>180.8°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°40'07"N 42°40'04"W</td>
                                    <td>223.4</td>
                                    <td style="color:red;">135.4</td>
                                    <td>14.5</td>
                                    <td>20.89</td>
                                </tr>
                                <tr class="hov" id="ui:59c1024eb395b292ed621334">
                                    <td class="tdc"><span id="rt:59c1024eb395b292ed621334"></span></td>
                                    <td style="color: DarkGoldenRod;">luxairfrance**PYR**</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>113</td>
                                    <td>(1235.4)</td>
                                    <td>125.9</td>
                                    <td>180.1°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>26°58'55"N 42°37'59"W</td>
                                    <td>225.7</td>
                                    <td style="color:red;">137.3</td>
                                    <td>14</td>
                                    <td>19.89</td>
                                </tr>
                                <tr class="hov" id="ui:59fe26a4e0750e372d690bef">
                                    <td class="tdc"><span id="rt:59fe26a4e0750e372d690bef"></span></td>
                                    <td style="">MERL'O</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>420</td>
                                    <td>(1258.3)</td>
                                    <td>200.6</td>
                                    <td>163.4°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>25°52'23"N 41°34'01"W</td>
                                    <td>225.3</td>
                                    <td style="color:red;">140.3</td>
                                    <td>14.9</td>
                                    <td>20.61</td>
                                </tr>
                                <tr class="hov" id="ui:59d872a9b395b292ed64590c">
                                    <td class="tdc"><span id="rt:59d872a9b395b292ed64590c"></span></td>
                                    <td style="">bladjone</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>1157</td>
                                    <td>(1303)</td>
                                    <td>281.2</td>
                                    <td>152.6°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>24°53'52"N 40°15'14"W</td>
                                    <td>223</td>
                                    <td style="color:red;">139.6</td>
                                    <td>16.5</td>
                                    <td>22.76</td>
                                </tr>
                                <tr class="hov" id="ui:5bdc8577517022fc09d4bd62">
                                    <td class="tdc"><span id="rt:5bdc8577517022fc09d4bd62"></span></td>
                                    <td style="">Guillaume-13670</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>2375</td>
                                    <td>(1363.2)</td>
                                    <td>288</td>
                                    <td>140.4°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>25°20'12"N 39°14'57"W</td>
                                    <td>219.1</td>
                                    <td style="color:red;">137.8</td>
                                    <td>15.3</td>
                                    <td>20.81</td>
                                </tr>
                                <tr class="hov" id="ui:5a2c32137b296eaadfc5c870">
                                    <td class="tdc"><span id="rt:5a2c32137b296eaadfc5c870"></span></td>
                                    <td style="">VERT MER</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>4149</td>
                                    <td>(1413.7)</td>
                                    <td>-272.3</td>
                                    <td>127.6°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>26°15'01"N 38°37'26"W</td>
                                    <td>220.6</td>
                                    <td style="color:red;">139.6</td>
                                    <td>14.3</td>
                                    <td>19.23</td>
                                </tr>
                                <tr class="hov" id="ui:59e924a4e0750e372d6493dc">
                                    <td class="tdc"><span id="rt:59e924a4e0750e372d6493dc"></span></td>
                                    <td style="">perceval78</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>6544</td>
                                    <td>(1461.3)</td>
                                    <td>-266.3</td>
                                    <td>114.2°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°10'59"N 38°04'44"W</td>
                                    <td>228</td>
                                    <td style="color:red;">150.8</td>
                                    <td>16.8</td>
                                    <td>19.7</td>
                                </tr>
                                <tr class="hov" id="ui:59ccd03fb395b292ed62ec5c">
                                    <td class="tdc"><span id="rt:59ccd03fb395b292ed62ec5c"></span></td>
                                    <td style="">Kappa70</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>9621</td>
                                    <td>(1507.1)</td>
                                    <td>-249.4</td>
                                    <td>93.7°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>28°43'56"N 37°53'52"W</td>
                                    <td>215</td>
                                    <td style="color:red;">142.3</td>
                                    <td>11.4</td>
                                    <td>15.47</td>
                                </tr>
                                <tr class="hov" id="ui:59fecd8ae0750e372d693d89">
                                    <td class="tdc"><span id="rt:59fecd8ae0750e372d693d89"></span></td>
                                    <td style="">Flaf</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>13433</td>
                                    <td>(1546.9)</td>
                                    <td>-299.6</td>
                                    <td>95°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>28°31'37"N 36°57'57"W</td>
                                    <td>226.6</td>
                                    <td style="color:red;">153</td>
                                    <td>11.4</td>
                                    <td>13.77</td>
                                </tr>
                                <tr class="hov" id="ui:59fef7a9e0750e372d697ecb">
                                    <td class="tdc"><span id="rt:59fef7a9e0750e372d697ecb"></span></td>
                                    <td style="">Tarza Querva 85</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>18033</td>
                                    <td>(1580)</td>
                                    <td>-420.7</td>
                                    <td>111.8°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>26°16'59"N 35°22'04"W</td>
                                    <td>221</td>
                                    <td style="color:red;">144.8</td>
                                    <td>14</td>
                                    <td>17.05</td>
                                </tr>
                                <tr class="hov" id="ui:5b926484517022fc09d0ad24">
                                    <td class="tdc"><span id="rt:5b926484517022fc09d0ad24"></span></td>
                                    <td style="">madalar</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>23467</td>
                                    <td>(1619.5)</td>
                                    <td>-367.1</td>
                                    <td>90.2°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>28°52'48"N 35°38'20"W</td>
                                    <td>218</td>
                                    <td style="color:red;">139.8</td>
                                    <td>10.5</td>
                                    <td>15.11</td>
                                </tr>
                                <tr class="hov" id="ui:5ae06f4c7b296eaadfd02585">
                                    <td class="tdc"><span id="rt:5ae06f4c7b296eaadfd02585"></span></td>
                                    <td style="">kat</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>29780</td>
                                    <td>(1654.4)</td>
                                    <td>-437.7</td>
                                    <td>98.2°</td>
                                    <td>Spi (Auto)</td>
                                    <td>racing</td>
                                    <td>27°47'36"N 34°27'44"W</td>
                                    <td>229.9</td>
                                    <td style="color:red;">158.3</td>
                                    <td>13.8</td>
                                    <td>14.3</td>
                                </tr>
                                <tr class="hov" id="ui:5b348985517022fc09cebe59">
                                    <td class="tdc"><span id="rt:5b348985517022fc09cebe59"></span></td>
                                    <td style="">Guest43149</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>37017</td>
                                    <td>(1687)</td>
                                    <td>-389.4</td>
                                    <td>62.8°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>31°52'33"N 35°49'50"W</td>
                                    <td>232</td>
                                    <td style="color:green;">173.2</td>
                                    <td>2.8</td>
                                    <td>2.83</td>
                                </tr>
                                <tr class="hov" id="ui:5a4238f07b296eaadfc7f38f">
                                    <td class="tdc"><span id="rt:5a4238f07b296eaadfc7f38f"></span></td>
                                    <td style="">TEAM DIDILE FLASH</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>45217</td>
                                    <td>(1715.2)</td>
                                    <td>-456.6</td>
                                    <td>85.4°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>29°24'51"N 33°54'53"W</td>
                                    <td>198</td>
                                    <td style="color:red;">120.5</td>
                                    <td>9.4</td>
                                    <td>16.14</td>
                                </tr>
                                <tr class="hov" id="ui:5a1835037b296eaadfc45ec9">
                                    <td class="tdc"><span id="rt:5a1835037b296eaadfc45ec9"></span></td>
                                    <td style="">Thangka</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>54421</td>
                                    <td>(1751)</td>
                                    <td>-467.5</td>
                                    <td>74.5°</td>
                                    <td>LG</td>
                                    <td>racing</td>
                                    <td>30°52'29"N 33°52'27"W</td>
                                    <td>225</td>
                                    <td style="color:red;">147.2</td>
                                    <td>6.5</td>
                                    <td>9.64</td>
                                </tr>
                                <tr class="hov" id="ui:5bdd54d9517022fc09d5028b">
                                    <td class="tdc"><span id="rt:5bdd54d9517022fc09d5028b"></span></td>
                                    <td style="">Squidly</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>64665</td>
                                    <td>(1792.1)</td>
                                    <td>-498.1</td>
                                    <td>66.8°</td>
                                    <td>Jib</td>
                                    <td>racing</td>
                                    <td>32°02'51"N 33°37'17"W</td>
                                    <td>254.8</td>
                                    <td style="color:green;">79.7</td>
                                    <td>2</td>
                                    <td>5.45</td>
                                </tr>
                                <tr class="hov" id="ui:5be01420517022fc09d9ac7f">
                                    <td class="tdc"><span id="rt:5be01420517022fc09d9ac7f"></span></td>
                                    <td style="">Guest72331</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>75988</td>
                                    <td>(1840.8)</td>
                                    <td>-647.7</td>
                                    <td>97.4°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>27°08'41"N 30°34'59"W</td>
                                    <td>214</td>
                                    <td style="color:red;">133.9</td>
                                    <td>14.2</td>
                                    <td>20.13</td>
                                </tr>
                                <tr class="hov" id="ui:5bdad16f517022fc09d407ef">
                                    <td class="tdc"><span id="rt:5bdad16f517022fc09d407ef"></span></td>
                                    <td style="">Le tigre des mers</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>88423</td>
                                    <td>(1922.5)</td>
                                    <td>-623.7</td>
                                    <td>57.6°</td>
                                    <td>Stay</td>
                                    <td>racing</td>
                                    <td>34°14'17"N 32°00'57"W</td>
                                    <td>197</td>
                                    <td style="color:green;">73.2</td>
                                    <td>12.8</td>
                                    <td>12.67</td>
                                </tr>
                                <tr class="hov" id="ui:5bdf7524517022fc09d92fd0">
                                    <td class="tdc"><span id="rt:5bdf7524517022fc09d92fd0"></span></td>
                                    <td style="">brascassé</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>102005</td>
                                    <td>(2057.6)</td>
                                    <td>-869.9</td>
                                    <td>20.5°</td>
                                    <td>Jib</td>
                                    <td>racing</td>
                                    <td>42°29'34"N 35°48'17"W</td>
                                    <td>252.2</td>
                                    <td style="color:green;">27.5</td>
                                    <td>31.5</td>
                                    <td>9.4</td>
                                </tr>
                                <tr class="hov" id="ui:5a1409737b296eaadfc40c1a">
                                    <td class="tdc"><span id="rt:5a1409737b296eaadfc40c1a"></span></td>
                                    <td style="">gromain</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>116769</td>
                                    <td>(2391)</td>
                                    <td>-1207.8</td>
                                    <td>91.7°</td>
                                    <td>Spi</td>
                                    <td>racing</td>
                                    <td>26°33'41"N 20°00'44"W</td>
                                    <td>201.3</td>
                                    <td style="color:red;">141.1</td>
                                    <td>8.9</td>
                                    <td>13.36</td>
                                </tr>
                                <tr class="hov" id="ui:2">
                                    <td class="tdc"><span id="rt:2"></span></td>
                                    <td style="color: DarkGreen;">MACIF</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>1</td>
                                    <td>(1130.5)</td>
                                    <td>459.9</td>
                                    <td>178.4°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>21°25'03"N 42°24'06"W</td>
                                    <td>235</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>27.5</td>
                                </tr>
                                <tr class="hov" id="ui:4">
                                    <td class="tdc"><span id="rt:4"></span></td>
                                    <td style="color: DarkGreen;">IDEC SPORT</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>2</td>
                                    <td>(1286.8)</td>
                                    <td>481.1</td>
                                    <td>159.2°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>21°33'09"N 39°34'14"W</td>
                                    <td>217</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>30.5</td>
                                </tr>
                                <tr class="hov" id="ui:5">
                                    <td class="tdc"><span id="rt:5"></span></td>
                                    <td style="color: DarkGreen;">BANQUE POPULAIRE</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>2</td>
                                    <td>(2657.5)</td>
                                    <td>-1362</td>
                                    <td>51.9°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>41°02'02"N 18°53'25"W</td>
                                    <td>198</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>26.4</td>
                                </tr>
                                <tr class="hov" id="ui:6">
                                    <td class="tdc"><span id="rt:6"></span></td>
                                    <td style="color: DarkGreen;">REMADE - USE IT AGAIN !</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>3</td>
                                    <td>(3021.5)</td>
                                    <td>-1724.5</td>
                                    <td>53.7°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>42°28'05"N 10°57'18"W</td>
                                    <td>284</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>8</td>
                                </tr>
                                <tr class="hov" id="ui:1">
                                    <td class="tdc"><span id="rt:1"></span></td>
                                    <td style="color: DarkGreen;">SODEBO ULTIM'</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>4</td>
                                    <td>(3144.5)</td>
                                    <td>-1848.2</td>
                                    <td>53°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>43°22'00"N 8°23'01"W</td>
                                    <td>257</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>0.1</td>
                                </tr>
                                <tr class="hov" id="ui:5a00a4da7b296eaadfc0bb12">
                                    <td class="tdc"><span id="rt:5a00a4da7b296eaadfc0bb12"></span></td>
                                    <td style="">vannes56000</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>(1247.8)</td>
                                    <td>105.1</td>
                                    <td>178.5°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>27°19'42"N 42°34'40"W</td>
                                    <td>223.7</td>
                                    <td style="color:red;">135.4</td>
                                    <td>12.7</td>
                                    <td>18.67</td>
                                </tr>
                                <tr class="hov" id="ui:59c806cab395b292ed62ac57">
                                    <td class="tdc"><span id="rt:59c806cab395b292ed62ac57"></span></td>
                                    <td style="">Estelle DENIS</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>13920</td>
                                    <td>(1547.3)</td>
                                    <td>-534.5</td>
                                    <td>129.3°</td>
                                    <td>LG (Auto)</td>
                                    <td>racing</td>
                                    <td>23°13'52"N 35°08'19"W</td>
                                    <td>227.3</td>
                                    <td style="color:red;">152.5</td>
                                    <td>18.2</td>
                                    <td>20.58</td>
                                </tr>
                                <tr class="hov" id="ui:pilotBoat">
                                    <td class="tdc"><span id="rt:pilotBoat"></span></td>
                                    <td style="">Frigate</td>
                                    <td>09/11/2018 à 14:56:50 UTC</td>
                                    <td>-</td>
                                    <td>1872.59</td>
                                    <td>-585.7</td>
                                    <td>87.9°</td>
                                    <td>-</td>
                                    <td>-</td>
                                    <td>28°58'22"N 31°27'46"W</td>
                                    <td>219</td>
                                    <td style="color:green;">-</td>
                                    <td>-</td>
                                    <td>15.2</td>
                                </tr>
                            </tbody>
                        </table>
                    </div>
                </div>
            </div>
            <div id="tab-content3" class="content hidden" style="display: none;">
                <input type="checkbox" id="cb_rawlog">
                <label>Log messages</label>
                <button id="bt_clear">Clear log</button>
                <div style="white-space: pre;" id="rawlog"></div>
            </div>
            <div id="tab-content4" class="content hidden" style="display: none;">
            </div>
        </div>
     
     
    </body>
     
    </html>

  14. #14
    Invité
    Invité(e)
    Par défaut
    OK. Manifestement, ça n'a rien cloné.

    Peux-tu re-tester en commentant ces lignes dans le script resizeTables.js (à la fin) :

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    // Redimensionnement de la fenêtre
    /*
    window.onresize = function(){
    //  table_thead_fixed_resize();
    }
    */
    Montre aussi les erreurs éventuelles dans la "console".

  15. #15
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Nom : Capture d’écran 2018-11-09 à 16.31.13.png
Affichages : 542
Taille : 30,0 Ko

    Si ça peut aider lors du lancement de l'extension j'ai une copie du thead qui apparaît sous le thead (du coup j'en ai 2) et ça disparait lors que je réceptionne la 1ère trame WebSocket

  16. #16
    Invité
    Invité(e)
    Par défaut
    Tu ne peux plus avoir cette erreur si tu as fait ce que j'ai dit, puisque table_thead_fixed_resize() n'est plus appelée.

  17. #17
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Je sais que t'aime pas les screens mais la c'est parlant
    Nom : Capture d’écran 2018-11-09 à 17.13.14.png
Affichages : 659
Taille : 89,2 Ko

    c'est tbody-scroll qui affiche ça mais ça disparait à réception d'une trame WS

    J'ai bien fait le tour et j'ai bien commenté ce que tu m'as demandé

  18. #18
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    J'ai trouvé l'origine du craquage ... c'est moi dans style.css au lieu d'avoir .theader-fixed{...}, j'avais .thead-fixed {...}
    J'ai corrigé et j'ai plus le double affichage en revanche j'ai toujours l'erreur en console.

  19. #19
    Invité
    Invité(e)
    Par défaut
    Citation Envoyé par rlelamer Voir le message
    ...mais ça disparait à réception d'une trame WS...
    Je ne vois pas de quoi tu parles...

    ...j'ai toujours l'erreur en console...
    Fais le ménage dans ton code.

    Tu NE PEUX PAS avoir cette erreur "...getBoundingClientRect..." si tu as commenté le code de table_thead_fixed_resize() !

    Ou alors, c'est que tu as d'AUTRES SCRIPTS sur la même page...
    ... ET/OU VIDE le CACHE navigateur !!

    Montre le code de resizeTables.js.
    Dernière modification par Invité ; 09/11/2018 à 18h36.

  20. #20
    Membre régulier
    Profil pro
    Inscrit en
    Mars 2011
    Messages
    320
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mars 2011
    Messages : 320
    Points : 79
    Points
    79
    Par défaut
    Je vais reprendre les fichiers modifiés et les comparer aux fichiers originaux pour voir si j'ai pas fais d'erreur(s).

+ Répondre à la discussion
Cette discussion est résolue.
Page 1 sur 2 12 DernièreDernière

Discussions similaires

  1. Thead fixe sur première ligne lors d'un scroll
    Par rlelamer dans le forum Mise en page CSS
    Réponses: 56
    Dernier message: 26/09/2018, 17h31
  2. Div pere fixe et scroll sur div fils
    Par mowegan dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 10/01/2011, 11h37
  3. image de fond cellule tableau html, fixe sur scroll
    Par laurentSc dans le forum Balisage (X)HTML et validation W3C
    Réponses: 11
    Dernier message: 08/09/2010, 18h25
  4. Position Fixed et scrolling
    Par Greg12345 dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 25/05/2010, 23h04
  5. Comment placer des divs fixes au scroll ?
    Par Jayrome dans le forum Mise en page CSS
    Réponses: 2
    Dernier message: 01/02/2009, 11h39

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