| |||||||||||||||
| |||||||||||||||
| |||||||||||||||
| styleEntry | Mise en forme d'une zone de saisie | |||||||||
| Syntaxe | styleEntry(flag) | |||||||||
| Paramètres |
| |||||||||
| Fonctions util. |
|
| Code Perl |
sub styleEntry {local($flag) = @_;
local($bg,$coul);
$bg = (($flag eq "true")?"#FCFBED":$cPlan); $coul = $pPlan;
return ' style="background-color:'.$bg.'; color:'.$coul.'"';
}
|
| Code JavaScript |
function styleEntry(flag) {
var bg,coul;
bg = ((flag=="true")?"#FCFBED":cPlan); coul = pPlan;
return ' style="background-color:'+bg+'; color:'+coul+'"';
}
|