Categories > TinyButStrong general (FR) >

Affichage conditionel

The forum is closed. Please use Stack Overflow for submitting new questions. Use tags: tinybutstrong , opentbs
By: Fr@ncky
Date: 2005-11-08
Time: 12:00

Affichage conditionel

Bonjour,
j'affiche le contenu d'une requete dans une tableau. Quand une ligne de la colonne OK contient 1 j'aimerais afficher une images sans que le chiffre 1 soit affiché, quand il contient 0 j'affiche blanc. J'ai fait un bloc conditionel mais je n'arrive pas à ne pas affiché le contenu du champs.

Merci d'avance
Fr@ncky

<table width="60%" border="0" class="unnamed1">
  <tr bgcolor="#CACACA">
    <td width="5%">OK</td>
    <td width="75%">Etape</td>
    <td width="20%">Date</td>
  </tr>
  <tr bgcolor="#F0F0F0">
    <td><IMG SRC="images\fleche_d.gif">[blk_suivi.OK;block=tr;when [blk_suivi.OK]==1]</td>
    <td>[blk_suivi.LIBELLE;]</td>
    <td>[blk_suivi.DATEJ;]</td>
  </tr>
  <tr bgcolor="#F0F0F0">
    <td>[blk_suivi.OK;block=tr;when [blk_suivi.OK]==0]</td>
    <td>[blk_suivi.LIBELLE;]</td>
    <td>[blk_suivi.DATEJ;]</td>
  </tr>
</table>
By: Skrol29
Date: 2005-11-08
Time: 12:39

Re: Affichage conditionel

Salut,

Au lieu d'utiliser une section conditionelle, tu peux utiliser simplement un champ conditionnel.

  <tr bgcolor="#F0F0F0">
    <td>[blk_suivi.OK;block=tr;if [val]==1;then '<img src="images\fleche_d.gif">';else '']</td>
    <td>[blk_suivi.LIBELLE;]</td>
    <td>[blk_suivi.DATEJ;]</td>
  </tr>

By: Fr@ncky
Date: 2005-11-08
Time: 13:34

Re: Affichage conditionel

Nickel ! Merci beaucoup.