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

HTML Discussion :

[HTML] comment modifier ce code


Sujet :

HTML

  1. #1
    Futur Membre du Club
    Profil pro
    Inscrit en
    Mai 2008
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Mai 2008
    Messages : 7
    Points : 8
    Points
    8
    Par défaut [HTML] comment modifier ce code
    bonjour,
    j'ai téléchargé sur adobe le tableau en format html (mieux pour le referencement qu'avec celui avec du xml)que vous pouvez voir sur le lien suivant:
    http://labs.adobe.com/technologies/spry/demos/

    le fichier contient un fichier template et un fichier html et du jscript. J'ai ajouté une colonne supplémentaire mais n'arrive pas a y mettre des données.J'espère que vous pourrez m'aider.
    voici les codes:
    templates:
    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
    <div spry:region="dsProducts" id="content">
    <table id="products">
    <caption>
    Nos séjours
    </caption>
    <tbody>
    <tr>
    <th scope="col" spry:sort="name">Nom</th>
    <th scope="col" spry:sort="category">Thème</th>
    <th scope="col" spry:sort="massifs">Massifs</th>
    </tr>
    </tbody>
    <tbody spry:repeatchildren="dsProducts" spry:choose="choose">
    <tr spry:when="{ds_RowID} == {ds_CurrentRowID}" class="{ds_EvenOddRow}" spry:setrow="dsProducts" spry:hover="rowHover" spry:select="rowSelected" spry:selected="selected">
    <td>{name}</td>
    <td>{category}</td>
    <td>{massifs}</td>
    </tr>
    <tr spry:default="default" class="{ds_EvenOddRow}" spry:setrow="dsProducts" spry:hover="rowHover" spry:select="rowSelected">
    <td>{name}</td>
    <td>{category}</td>
    <td>{massifs}</td>
    </tr>
    </tbody>
    </table>
    </div>
    <div id="sidebar">
    <p spry:detailregion="dsProducts" id="boxshot">{boximage}</p>
    <div id="Acc1" class="Accordion" tabindex="0">
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">
    <h3>Infos</h3>
    </div>
    <div spry:detailregion="dsProducts" class="AccordionPanelContent">
    <div>{description}</div>
    </div>
    </div>
    <div class="AccordionPanel">
    <div class="AccordionPanelTab">
    <h3>Points forts</h3>
    </div>
    <div spry:detailregion="dsProducts" class="AccordionPanelContent">
    <div>
    <ul>{features}</ul>
    </div>
    </div>
    </div>
    </div>
    </div>

    code de la page html:
    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
     
    <html xmlns="http://www.w3.org/1999/xhtml"; xmlns:spry="http://ns.adobe.com/spry">;
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
    <title>Products Demo</title>
    <link href="screen.css" rel="stylesheet" type="text/css" />
    <script type="text/javascript" src="SpryData.js"></script>
    <script type="text/javascript" src="SpryHTMLDataSet.js"></script>
    <script type="text/javascript" src="SpryAccordion.js"></script>
    <script type="text/javascript" src="products.js"></script>
    <style type="text/css">
    <!--
    body {
    background-color: #C0DFFD;
    }
    body,td,th {
    color: #3366CC;
    }
    .Style1 {color: #3366CC}
    a:link {
    color: #FF6600;
    }
    a:hover {
    color: #3366CC;
    }
    .Style2 {color: #C0DFFD}
    -->
    </style>
    <script type="text/javascript">
    <!--
    function MM_openBrWindow(theURL,winName,features) { //v2.0
    window.open(theURL,winName,features);
    }
    //-->
    </script>
    </head>
    <body>
    <div id="wrap">
    <div id="header">
    <h1 class="Style1">Les raquettes : La montagne autrement</h1>
    <ul>
    <li>Modifier le classement: cliquez sur les entêtes de colonnes</li>
    <li>Voir les détails des séjours: cliquez sur une ligne</li>
    <li>Voir un diaporama: cliquez sur les photos (page pop-up pouvant être bloquée par certaines protections)</li>
    </ul>
    </div>
    <p class="clear"></p>
     
    <div id="productListing">
    <div class="product">
    <div class="boximage"><a href="#"><img src="chartreuse/en_tete_tableau/1686.JPG" alt="sortie nature dans le parc naturel régional de Chartreuse" width="238" height="178" class="productimage" onclick="MM_openBrWindow('chartreuse/simpleviewer/index.html','diaporamaChartreuse','scrollbars=yes,resizable=yes,width=950,height=600')"/></a></div>
    <div class="productinfo">
    <div class="category">Saveurs et terroirbauges</div>
    <h2>Week-end raquettes en Chartreuse</h2>
    <p class="productdescription"><br />
    <img src="IMAGES/gif/disquette.gif" alt="" width="30" height="26" /><br />
    <a href="TEXTE/We_chartreuse_raquette_et_gastronomie.pdf">Fiche circuit.pdf</a>.</p>
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Multicam editing </li>
    <li>Accelerated client review and approval </li>
    <li>DVD authoring from the timeline </li>
    <li>Native HDV editing </li>
     
    <li>Native SD and HD support </li>
    <li>Enhanced color-correction tools </li>
    <li>10-bit and 16-bit color resolution support </li>
    <li>32-bit internal color processing </li>
    <li>GPU-accelerated rendering </li>
    <li>Adobe Bridge</li>
     
    </ul>
    </div>
    </div>
    <div class="product">
    <div class="boximage"><img class="productimage" alt="aftereffectspro" width="238" height="130" /></div>
    <div class="productinfo">
    <div class="category">Multiactivité</div>
    <h2><span class="subHeader">Week-end nordique Bauges</span> Bauges</h2>
     
    <p class="productdescription">Animate your ideas. Adobe® After Effects® 7.0 software helps you create compelling motion graphics and blockbuster visual effects with efficiency, precision, and infinite variety. Take advantage of unmatched integration with other Adobe software, flexible 2D and 3D compositing, and hundreds of effects and Animation Presets to bring a new dimension to your film, video, DVD, and Macromedia® Flash® productions.</p>
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Redesigned, unified user interface </li>
     
    <li>Graph Editor </li>
    <li>HDR color support </li>
    <li>Timesaving Animation and Behavior Presets plus project templates </li>
    <li>Real-time, high-fidelity OpenGL support </li>
    <li>Timewarp </li>
    <li>Adobe Bridge </li>
     
    <li>Expanded file format support </li>
    <li>Unmatched Adobe integration </li>
    <li>Macromedia® Flash® Video (FLV) export </li>
    </ul>
    </div>
     
    </div>
    <div class="product">
    <div class="boximage"><img src="Bauges/en_tete_tableau/lachat3.jpg" alt="Parc naturel régional des Bauges: Lachat" width="238" height="178" class="productimage"/></div>
    <div class="productinfo">
    <div class="category">Saveurs et terroir</div>
    <h2>Week-end raquettes Bauges</h2>
    <p class="productdescription">Animate your ideas. Adobe® After Effects® 7.0 software helps you create compelling motion graphics and blockbuster visual effects with efficiency, precision, and infinite variety. Take advantage of unmatched integration with other Adobe software, flexible 2D and 3D compositing, and hundreds of effects and Animation Presets to bring a new dimension to your film, video, DVD, and Macromedia® Flash® productions.</p>
     
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Flexible 2D and 3D compositing environment </li>
    <li>Unrivaled creative text animation tools </li>
    <li>Powerful animation and keyframing </li>
    <li>Visual effects plug-ins </li>
     
    <li>Vector Paint support </li>
    <li>Professional output options for film, video, DVD, Macromedia® Flash®, and other streaming media formats for the web </li>
    <li>Masking tools</li>
    </ul>
    </div>
    </div>
    <div class="product">
    <div class="boximage"><a href="#"><img src="Bauges/en_tete_tableau/groupe allant.JPG" alt="encore" width="238" height="178" class="productimage" onclick="MM_openBrWindow('Bauges/simpleviewer/index.html','','scrollbars=yes,resizable=yes,width=950,height=600')"/></a></div>
    <div class="productinfo">
    <div class="category">Bien être</div>
    <h2>Week-end raquette Bauges</h2>
    <p class="productdescription"><span class="bodyText">-2 journées de raquettes <a href="qui_sommes_nous1.html">accompagnées</a>, au coeur du Parc Naturel Régional des Bauges.<br />
    -Pension complète dans un gîte 3 épis-produits du terroir<br />
    -Les balades suivies soit d'un <strong>massage</strong> soit d'une séance de <strong>yoga</strong> (professionnele diplômée). <br />
    <a href="#" onclick="MM_openBrWindow('Bauges/simpleviewer/index.html','','scrollbars=yes,resizable=yes,width=950,height=600')">diaporama</a></span></p>
     
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Slideshow Editor</li>
    <li>Flowchart</li>
    <li>Updated user interface with workspace panels that dock and group</li>
    <li>Adobe Bridge</li>
    <li>Automated chapter menus</li>
     
    <li>Chapter Playlists</li>
    <li>Royalty-free templates and menu art</li>
    <li>Multiple clips on a timeline</li>
    <li>XMP metadata support</li>
    <li>DTS audio support</li>
    </ul>
     
    </div>
    </div>
    <div class="product">
    <div class="boximage"><img src="Bauges/en_tete_tableau/1653.JPG" alt="premierpro" width="238" height="178" class="productimage"/></div>
    <div class="productinfo">
    <div class="category">Audio and Video</div>
    <h2>Week-end raquette dans le massif des Bauges</h2>
    <p class="productdescription">Record, mix, edit, and master digital audio files with powerful tools that bring flexibility and control to your desktop studio. Easily create music, produce radio spots, and restore imperfect recordings. Bring audio and video together using smart integration with Adobe video applications. Get professional results in real time with Adobe® Audition® 2.0 software.</p>
     
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Analog-modeled Multiband Compressor</li>
    <li>Recordable parameter automation with external hardware support</li>
    <li>New tools for mastering</li>
    <li>New Spectral Frequency Display tools</li>
     
    <li>Broader video format support</li>
    <li>Optimized performance</li>
    <li>Intuitive user interface</li>
    </ul>
    </div>
    </div>
    <div class="product">
     
    <div class="boximage"><img src="../products/images/premiere.gif" alt="premierpro" width="238" height="130" class="productimage"/></div>
    <div class="productinfo">
    <div class="category">Audio and Video</div>
    <h2>Séjour raquette en vanoise:3 jours</h2>
    <p class="productdescription">The Adobe® Video Bundle brings together Adobe Production Studio Premium software, the complete audio and video post-production solution for film, video, and DVD, with Macromedia® Flash® Professional 8 software, the industry's choice for authoring rich interactive content for the web. Now with one value-priced package, you can design, develop, and produce professional results for film, video, and DVD, plus easily incorporate interactive video for rich online experiences.</p>
     
    <h3>Features</h3>
    <ul class="featureslist">
    <li>Motion graphics and visual effects with Adobe After Effects 7.0</li>
    <li>Real-time video editing with Adobe Premiere Pro 2.0</li>
    <li>Greater control over images in Adobe Photoshop CS2</li>
    <li>Audio recording, mixing, editing, and mastering with Adobe Audition 2.0 (Premium edition only)</li>
     
    <li>Professional DVD production with Adobe Encore DVD 2.0 (Premium edition only)</li>
    <li>New power for vectors in Adobe Illustrator CS2 (Premium edition only)</li>
    <li>Eliminate rendering with Adobe Dynamic Link, only in Production Studio</li>
    <li>Increased productivity from unmatched Adobe integration</li>
    <li>A unified design environment for higher productivity</li>
    <li>File browsing and organizing with Adobe Bridge</li>
     
    <li>HD video for the highest production standards</li>
    <li>Broad support for industry standards and formats</li>
    <li>Macromedia Flash integration</li>
    <li>Pristine, high-quality color</li>
    <li>Superior audio production</li>
    <li>Macromedia Flash Professional 8</li>

  2. #2
    Membre éprouvé Avatar de laurentibus
    Inscrit en
    Mars 2008
    Messages
    875
    Détails du profil
    Informations personnelles :
    Âge : 39

    Informations forums :
    Inscription : Mars 2008
    Messages : 875
    Points : 908
    Points
    908
    Par défaut
    truitas ( sympa le nick ca viens d ou ? )

    dis moi plus précisément ce que tu ajoute qui ne s affiche pas

Discussions similaires

  1. Comment Modifier du code par du code
    Par Bronks59 dans le forum Macros et VBA Excel
    Réponses: 4
    Dernier message: 01/10/2008, 16h54
  2. Comment modifier le code de mon site ?
    Par car-design83 dans le forum Débuter
    Réponses: 9
    Dernier message: 16/05/2008, 13h53
  3. Comment modifier ce code javascript de quizz ?
    Par cynthiavn dans le forum Général JavaScript
    Réponses: 2
    Dernier message: 28/05/2007, 03h10
  4. [HTML] comment bloquer le code source en html
    Par leclone dans le forum Balisage (X)HTML et validation W3C
    Réponses: 5
    Dernier message: 29/10/2006, 22h17
  5. [VS] Comment modifier le code de Bibliotheque de classes ?
    Par DonJR dans le forum Visual Studio
    Réponses: 6
    Dernier message: 24/10/2006, 13h17

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