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

Mise en page CSS Discussion :

scrollbar de trop


Sujet :

CSS

Vue hybride

Message précédent Message précédent   Message suivant Message suivant
  1. #1
    Membre confirmé
    Inscrit en
    Juin 2007
    Messages
    111
    Détails du profil
    Informations forums :
    Inscription : Juin 2007
    Messages : 111
    Par défaut scrollbar de trop
    Bonjour,
    je suis tourmenté. Je travaille actuellement sur une page en asp.net ou je génère des panels imbriqué avec des tableaux. mais voila il me fait des scrollBars dans tous les sens et je suis un peu dépassé. Moi ce que je voudrais c'est une seul scrollBar pour toute ma page.
    Ce symptôme n'apparait pas sous IE mais sous FF3 (j'ai pas essayé FF2).

    j'ai trituré les overflows mais la je suis bloqué

  2. #2
    Membre Expert Avatar de HiRoN
    Homme Profil pro
    Développeur Web
    Inscrit en
    Août 2007
    Messages
    2 035
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Var (Provence Alpes Côte d'Azur)

    Informations professionnelles :
    Activité : Développeur Web

    Informations forums :
    Inscription : Août 2007
    Messages : 2 035
    Par défaut
    Sans le code (HTML & CSS), ou une page en ligne, difficile d'aider...
    Pensez à utiliser les ressources disponibles en Dev. Web :
    (x)HTML : Cours (X)HTML / FAQ (X)HTML
    CSS : Cours CSS / FAQ CSS / Galerie CSS
    Javascript : Cours / FAQ / Sources
    Mon site : Développeur Web Freelance

  3. #3
    Membre confirmé
    Inscrit en
    Juin 2007
    Messages
    111
    Détails du profil
    Informations forums :
    Inscription : Juin 2007
    Messages : 111
    Par défaut
    désolé,
    le problème c'est que c'est du code généré automatiquement à partir d'ASP.net
    et vu que je génère dynamiquement c'est pas super sexy mais en gros voila ce que j'ai sous firefox

    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
    333
    334
    335
    336
    337
    338
    339
    340
    341
    342
    343
    344
    345
    346
    347
    348
    349
    350
    351
    352
    353
    354
    355
    356
    357
    358
    359
    360
    361
    362
    363
    364
    365
    366
    367
    368
    369
    370
    371
    372
    373
    374
    375
    376
    377
    378
    379
    380
    381
    382
    383
    384
    385
    386
    387
    388
    389
    390
    391
    392
    393
    394
    395
    396
    397
    398
    399
    400
    401
    402
    403
    404
    405
    406
    407
    408
    409
    410
    411
    412
    413
    414
    415
    416
    417
    418
    419
    420
    421
    422
    423
    424
    425
    426
    427
    428
    429
    430
    431
    432
    433
    434
    435
    436
    437
    438
    439
    440
    441
    442
    443
    444
    445
    446
    447
    448
    449
    450
    451
    452
    453
    454
    455
    456
    457
    458
    459
    460
    461
    462
    463
    464
    465
    466
    467
    468
    469
    470
    471
    472
    473
    474
    475
    476
    477
    478
    479
    480
    481
    482
    483
    484
    485
    486
    487
    488
    489
    490
    491
    492
    493
    494
     
     
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
     
    <html xmlns="http://www.w3.org/1999/xhtml" >
    <head><link rel="stylesheet" href="../App_Themes/ThemeAGEPS/Page.css" />
        <title>Détails</title>
         <style type="text/css">
            .space3
            {
                padding-bottom: 20px;
                margin-bottom: 20px;   
            }
            .overflowScroll{
                 overflow: scroll;
            }
            .space2
            {   
                padding-top: 5px;
                margin-top: 5px;
                padding-bottom: 5px;
                margin-bottom: 5px;
            } 
            div.space2[ID=""]{
                border-left : dotted 1px black;
                padding-left : 5px;
            }
            .spaceFleche,.space2,.space
            {
                margin-left: 15px;
            }  
            .ListView
            {
                border-style: solid;
                border-width: thin;
                table-layout: fixed;
                empty-cells: show;
                border-collapse:collapse;
            }
            table {
                border-collapse:collapse;
                border-width:1px; 
                border-style:solid; 
                border-color:black;
     
            }
            td { 
                border-width:1px;
                padding:5px;
                border-style:solid; 
                border-color:black;
            }
            th { 
                border-width:1px;
                padding:5px;
                border-style:solid; 
                border-color:black;
            }
            .item { 
               color : Black ;
               background-color : #DFE0E1;
            }
            .alter { 
               color : Black ;
               background-color : #EAEAEB;
            }
            .edit { 
               color : Black ;
               background-color : #91BDDB;
            }
    body
    {
     overflow: scroll;
    }
     
    #header 
    {  
        margin-top:10px;
        margin-left:10px;
        background-image : url("Images/0001320-Logo_AGEPS.gif");
        height:150px;
        background-repeat:no-repeat;
    }
     
    #body
    {
        height : auto;
     
    }
     
    *
    {
        font-family:Arial;
        font-size : 9 px;
        padding : 0px 0px 0px 0px ;
        margin : 0px 0px 0px 0px ;
    }
     
    .space
    {
        width:1024px;
        height:100px;
    }
     
    .center_hor
    {
         margin : 0px auto;
    }
     
    h1
    {
        padding-bottom : 50px;
    }
     
    .onLeft
    {
    border:solid 1px red;
    padding-left : 20px; 
    margin-left  : 20px;
     
    }
    .Left {
    margin-left:90px;
    }
     
    .Right {
    margin-left:130px;
    }
    .label {
     color :Green;
     text-align: right;
    }
    .hidden {
        border-style:none;
        visibility:hidden;
    }
    .toTheRight {
        float:right;
        margin-right:280px;
    }
    .toTheRightSimple {
        float:right;
          margin-right:50px;
    }
     
    .clearFloat{
        clear:both;
    }
     
    .item { 
       color : Black ;
       background-color : #DFE0E1;
    }
    .alter { 
       color : Black ;
       background-color : #EAEAEB;
    }
    .edit { 
       color : Black ;
       background-color : #91BDDB;
    }
    .red {
        background-color : Red;
    }
        </style> 
    </head>
    <body >
        <form name="aspnetForm" method="post" action="listeDeDetails.aspx" id="aspnetForm">
    <div>
     
    </div>
        <div id="header"><div class="space"><h2 style="margin:0 auto;width:550px;text-align:center;padding-top:40px;color:#0C2B86">Outil de supervision </h2> </div></div>        
        <div style="height:20px;padding-left:10px;width:100%">
     
           <a id="ctl00_LoginStatus" class="toTheRightSimple" href="javascript:__doPostBack('ctl00$LoginStatus$ctl00','')">Se déconnecter</a>
            <span id="ctl00_SiteMapPath1" style="font-family:Verdana;"><a href="#ctl00_SiteMapPath1_SkipLink"><img alt="Ignorer les liens de navigation" height="0" width="0" src="/WebResource.axd?d=U5yGC0cp1Rpx6JJyfS6caw2&amp;t=633548282523318138" style="border-width:0px;" /></a><a id="ctl00_SiteMapPath1_SkipLink"></a></span>  
        </div>
        <hr style="margin-bottom:10px;"/>
        <div id="body">
     
     
        <div style="font-size:12px;">
                <center> <h3> Affichage des données </h3> 
                <br />
     
                <fieldset style="width:530px;padding:2px 1px 2px 1px;">
                <legend>Information </legend>
                <p style ="width: 510px">Dans cette page, vous retrouvez l'ensemble des données sélectionné dans la page précédente. Vous pouvez sil cela s'avère nécessaire éditer les données en cliquant sur <img src="images/kedit.png" alt="edit" /></p>
                </fieldset>
                </center>
                <div id="ctl00_ContentPlaceHolder1_Panel1">
     
            <img id="ctl00_ContentPlaceHolder1_I48400_E1EDK01img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01lb" class="space3">I48400_E1EDK01</span><div id="ctl00_ContentPlaceHolder1_I48400_E1EDK01pan" class="space2">
     
    		<table class="space3 overflowVisible">
    			<tr>
    				<th></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ID_IDOCLbl">ID_IDOC</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_IDLbl">ID</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ID_PERELbl">ID_PERE</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_BSARTLbl">BSART</span></th>
     
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_BELNRLbl">BELNR</span></th>
    			</tr>
     
    				<tr class="item">
    					<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDK01ListView$ctrl0$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_ID">1</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_ID_PERE">0000000000352095</span></td>
     
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_BSART">OSMA</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK01ListView_ctrl0_BELNR">4500001491</span></td>
    				</tr>
    		</table>
    		<img id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01lb" class="space3">I48400_ZE1EDK01</span><div id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01pan" class="space2">
    			<table class="space3 overflowVisible">
    				<tr>
     
    					<th></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ID_IDOCLbl">ID_IDOC</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_IDLbl">ID</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ID_PERELbl">ID_PERE</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ZZSENDHOSPITALISLbl">ZZSENDHOSPITALIS</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_NOM_ENTREPRISELbl">NOM_ENTREPRISE</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_HOUSE_NUM1Lbl">HOUSE_NUM1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_STREETLbl">STREET</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_POST_CODE1Lbl">POST_CODE1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_CITY1Lbl">CITY1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_TEL_NUMBERLbl">TEL_NUMBER</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_FAX_NUMBERLbl">FAX_NUMBER</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_LIFN2Lbl">LIFN2</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_CC_NAME_LASTLbl">CC_NAME_LAST</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_CC_SMTP_ADDRLbl">CC_SMTP_ADDR</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_CC_TEL_NUMBERLbl">CC_TEL_NUMBER</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_CC_FAX_NUMBERLbl">CC_FAX_NUMBER</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_NUM_ORDRELbl">NUM_ORDRE</span></th>
     
    					<th><span id="_I48400_ZE1EDK01ListView_PUI_NAME_LASTLbl">PUI_NAME_LAST</span></th>
    					<th><span id="_I48400_ZE1EDK01ListView_PUI_NAME_FIRSTLbl">PUI_NAME_FIRST</span></th>
    					<th><span id="_I48400_ZE1EDK01ListView_NUM_AUTORISATIONLbl">NUM_AUTORISATION</span></th>
    					<th><span id="_I48400_ZE1EDK01ListView_MA_NAME_LASTLbl">MA_NAME_LAST</span></th>
    					<th><span id="_I48400_ZE1EDK01ListView_MA_NAME_FIRSTLbl">MA_NAME_FIRST</span></th>
    				</tr>
     
    					<tr class="item">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_ZE1EDK01ListView$ctrl0$edit_button" id="_I48400_ZE1EDK01ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="_I48400_ZE1EDK01ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    						<td><span id="_I48400_ZE1EDK01ListView_ctrl0_ID">2</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_ID_PERE">1</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_ZZSENDHOSPITALIS">NON</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_NOM_ENTREPRISE">BELDICO FRANCE SAS</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_HOUSE_NUM1">107</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_STREET">boulevard Stalingrad</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_POST_CODE1">69100</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_CITY1">VILLEURBANNE</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_TEL_NUMBER">04 72 44 01 23</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_FAX_NUMBER"></span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_LIFN2">0001000007</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_CC_NAME_LAST">FREMMERY</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_CC_SMTP_ADDR">fabien.remmery@accenture.com</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_CC_TEL_NUMBER">01 02 03 04 05</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_CC_FAX_NUMBER">01 02 03 04 09</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_NUM_ORDRE">ORAA0000AAA2</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_PUI_NAME_LAST">Nom_LP</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_PUI_NAME_FIRST">Prénom_LP</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_NUM_AUTORISATION">AUTA0000AAA1</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_MA_NAME_LAST">LOG_VA_DA_ME</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01ListView_ctrl0_MA_NAME_FIRST">USER_DE_TP_C2</span></td>
     
    					</tr>
    			</table>
     
    		</div>
    	</div><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_E1EDK01collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_E1EDK01collapse_ClientState" /><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_ZE1EDK01collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_ZE1EDK01collapse_ClientState" /><img id="ctl00_ContentPlaceHolder1_I48400_E1EDK03img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03lb" class="space3">I48400_E1EDK03</span><div id="ctl00_ContentPlaceHolder1_I48400_E1EDK03pan" class="space2">
    		<table class="space3 overflowVisible">
    			<tr>
    				<th></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ID_IDOCLbl">ID_IDOC</span></th>
     
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_IDLbl">ID</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ID_PERELbl">ID_PERE</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_IDDATLbl">IDDAT</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_DATUMLbl">DATUM</span></th>
    			</tr>
     
    				<tr class="item">
     
    					<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDK03ListView$ctrl0$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_ID">3</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_ID_PERE">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_IDDAT">012</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl0_DATUM">20081020</span></td>
     
    				</tr>
     
    				<tr class="alter">
    					<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDK03ListView$ctrl1$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_ID_IDOC">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_ID">4</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_ID_PERE">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_IDDAT">011</span></td>
     
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDK03ListView_ctrl1_DATUM">20081020</span></td>
    				</tr>
    		</table>
     
    	</div><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_E1EDK03collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_E1EDK03collapse_ClientState" /><img id="ctl00_ContentPlaceHolder1_I48400_E1EDP01img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01lb" class="space3">I48400_E1EDP01</span><div id="ctl00_ContentPlaceHolder1_I48400_E1EDP01pan" class="space2">
    		<table class="space3 overflowVisible">
    			<tr>
    				<th></th>
     
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ID_IDOCLbl">ID_IDOC</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_IDLbl">ID</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ID_PERELbl">ID_PERE</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_POSEXLbl">POSEX</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_MENGELbl">MENGE</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_MENEELbl">MENEE</span></th>
     
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_VPREILbl">VPREI</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_PEINHLbl">PEINH</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_PMENELbl">PMENE</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_WERKSLbl">WERKS</span></th>
    				<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_LGORTLbl">LGORT</span></th>
    			</tr>
     
    				<tr class="edit">
    					<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$cancel_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_cancel_button" title="Annuler" src="images/button_cancel.png" style="border-width:0px;" /></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_ID">5</span></td>
    					<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_ID_PERE">0000000000352095</span></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$POSEX" type="text" value="00010" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_POSEX" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$MENGE" type="text" value="2.000" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_MENGE" /></td>
     
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$MENEE" type="text" value="UN" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_MENEE" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$VPREI" type="text" value="50" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_VPREI" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$PEINH" type="text" value="1" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_PEINH" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$PMENE" type="text" value="UN" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_PMENE" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$WERKS" type="text" value="110" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_WERKS" /></td>
    					<td><input name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$LGORT" type="text" value="LTRC" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_LGORT" /></td>
    					<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP01ListView$ctrl0$update_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01ListView_ctrl0_update_button" title="Mise à Jour" src="images/button_ok.png" onclick="return confirm('Voulez effectuer les modifications');" style="border-width:0px;" /></td>
    				</tr>
    		</table>
     
    		<img id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01lb" class="space3">I48400_ZE1EDP01</span><div id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01pan" class="space2">
    			<table class="space3 overflowVisible">
    				<tr>
    					<th></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ID_IDOCLbl">ID_IDOC</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_IDLbl">ID</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ID_PERELbl">ID_PERE</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_TEXTELbl">TEXTE</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_DEVISELbl">DEVISE</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_QTE_UGSLbl">QTE_UGS</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_LMEINLbl">LMEIN</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_MFRPNLbl">MFRPN</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_EAN11Lbl">EAN11</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ARTLbl">ART</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_NAME1Lbl">NAME1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_HOUSE_NUM1Lbl">HOUSE_NUM1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_STREETLbl">STREET</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_POST_CODE1Lbl">POST_CODE1</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_CITY1Lbl">CITY1</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_TEL_NUMBERLbl">TEL_NUMBER</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_FAX_NUMBERLbl">FAX_NUMBER</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_NUM_ORDRELbl">NUM_ORDRE</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_NAME_LASTLbl">NAME_LAST</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_NAME_FIRSTLbl">NAME_FIRST</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_GRATUITLbl">GRATUIT</span></th>
     
    				</tr>
     
    					<tr class="item">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_ZE1EDP01ListView$ctrl0$edit_button" id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_ID">10</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_ID_PERE">5</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_TEXTE">EFDEGE MULTIDOSE FLACON A 2000 MBQ</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_DEVISE">EUR</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_QTE_UGS">2</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_LMEIN">UN</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_MFRPN">EFDEGE MULTIDOSE FLACON A 2000 MBQ</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_EAN11">9111123</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_ART"></span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_NAME1">Lautrec</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_HOUSE_NUM1">20bis</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_STREET">Rue Lavoisier</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_POST_CODE1">92000</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_CITY1">Nanterre</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_TEL_NUMBER"></span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_FAX_NUMBER"></span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_NUM_ORDRE">ORAA0000AAA1</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_NAME_LAST">Nom_PH</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_NAME_FIRST">Prénom_PH</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01ListView_ctrl0_GRATUIT"></span></td>
    					</tr>
    			</table>
     
    		</div><img id="ctl00_ContentPlaceHolder1_I48400_E1EDP19img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19lb" class="space3">I48400_E1EDP19</span><div id="ctl00_ContentPlaceHolder1_I48400_E1EDP19pan" class="space2">
    			<table class="space3 overflowVisible">
    				<tr>
    					<th></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ID_IDOCLbl">ID_IDOC</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_IDLbl">ID</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ID_PERELbl">ID_PERE</span></th>
     
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_KTEXTLbl">KTEXT</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_QUALFLbl">QUALF</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_IDTNRLbl">IDTNR</span></th>
    				</tr>
     
    					<tr class="item">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP19ListView$ctrl0$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_ID">6</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_ID_PERE">5</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_KTEXT">EFDEGE MULTIDOSE FLACON A 2000 MBQ</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_QUALF">001</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl0_IDTNR">000000000010000121</span></td>
    					</tr>
     
    					<tr class="alter">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP19ListView$ctrl1$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_ID_IDOC">0000000000352095</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_ID">7</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_ID_PERE">5</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_KTEXT"></span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_QUALF">003</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl1_IDTNR">9111123</span></td>
    					</tr>
     
    					<tr class="item">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP19ListView$ctrl2$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_ID_IDOC">0000000000352095</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_ID">8</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_ID_PERE">5</span></td>
     
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_KTEXT"></span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_QUALF">004</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP19ListView_ctrl2_IDTNR"></span></td>
    					</tr>
    			</table>
     
    		</div><img id="ctl00_ContentPlaceHolder1_I48400_E1EDP20img" class="spaceFleche" src="images/flecheB.png" style="border-width:0px;" /><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20lb" class="space3">I48400_E1EDP20</span><div id="ctl00_ContentPlaceHolder1_I48400_E1EDP20pan" class="space2">
    			<table class="space3 overflowVisible">
     
    				<tr>
    					<th></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ID_IDOCLbl">ID_IDOC</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_IDLbl">ID</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ID_PERELbl">ID_PERE</span></th>
    					<th><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_EDATULbl">EDATU</span></th>
    				</tr>
     
    					<tr class="item">
    						<td><input type="image" name="ctl00$ContentPlaceHolder1$I48400_E1EDP20ListView$ctrl0$edit_button" id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ctrl0_edit_button" title="Edit" src="images/kedit.png" style="border-width:0px;" /></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ctrl0_ID_IDOC">0000000000352095</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ctrl0_ID">9</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ctrl0_ID_PERE">5</span></td>
    						<td><span id="ctl00_ContentPlaceHolder1_I48400_E1EDP20ListView_ctrl0_EDATU">20081115</span></td>
     
    					</tr>
    			</table>
     
    		</div>
    	</div><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_E1EDP01collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_E1EDP01collapse_ClientState" /><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_ZE1EDP01collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_ZE1EDP01collapse_ClientState" /><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_E1EDP19collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_E1EDP19collapse_ClientState" /><input type="hidden" name="ctl00$ContentPlaceHolder1$I48400_E1EDP20collapse_ClientState" id="ctl00_ContentPlaceHolder1_I48400_E1EDP20collapse_ClientState" />
    </div>
     
        </div>
     
        </div>
     
    <div>
     
    </div>
     
    </form>
    </body>
     
    </html>
    sachant que la ca marche mais que j'ai enlevé tous le javascript qui faisait appelle à des scripts générés et que je ne sais pas ou les trouver.

    Donc je vais essayer de trouver comment le javascript joue sur le résultat
    ça limite déja mon champ d'investigation.

Discussions similaires

  1. Scrollbar trop petit , il me manque des widget
    Par zeonnix95 dans le forum Tkinter
    Réponses: 1
    Dernier message: 07/09/2010, 16h51
  2. ScrollBar un peu trop timide.
    Par Zelwina dans le forum Composants
    Réponses: 2
    Dernier message: 15/08/2010, 14h45
  3. Grille + Scrollbar = lignes blanches en trop
    Par maVariable dans le forum Windows Forms
    Réponses: 1
    Dernier message: 15/05/2009, 14h19
  4. [Listbox] ScrollBar Horizontal
    Par haleem dans le forum VB 6 et antérieur
    Réponses: 4
    Dernier message: 20/04/2005, 07h53
  5. [visuel]ScrollBar et StatusBar
    Par psl dans le forum Composants VCL
    Réponses: 2
    Dernier message: 24/08/2002, 21h28

Partager

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