|
ghorgy 35
| Posté : 18-09-2003 15:12
Bonjour,
Le add_extender('field', 'onChange="xxx", 'toto') fonctionne très bien sur un field de type select mais pour un field de type input text, seul le toto est pris en compte.
Le code !javascript! n'est pas rajouté (contrairement au cas uvec un field de type select)
Quelqu'un a une idée ?
Merci d'avance
Ghorgy |  Profil Citation
|
|
developpeur 24581
| |
ghorgy 35
| Posté : 19-09-2003 10:05
Bonjour:
fichier sform.php ligne 293: remplacer le code jusuq'au break par:
// Charge la valeur et analyse la clef
if ($this->form_fields[$i]['name']==$this->form_key) {
$this->form_key_value=$this->form_fields[$i]['value'];
if ($this->form_key_status=="close") {
$str.="<input CLASS=\"TEXTBOX_STANDARD\" type=hidden name='".$this->form_fields[$i]['name']."' value='".$this->form_fields[$i]['value']."' size=".$csize." maxlength=".$this->form_fields[$i]['size'];
$str.="<b>".$this->form_fields[$i]['value']."</b> ";
} else {
$str.="<input CLASS=\"TEXTBOX_STANDARD\" type=".$this->form_fields[$i]['type']." name='".$this->form_fields[$i]['name']."' value='".$this->form_fields[$i]['value']."' size=".$csize." maxlength=".$this->form_fields[$i]['size'];
}
} else {
$str.="<input CLASS=\"TEXTBOX_STANDARD\" type=".$this->form_fields[$i]['type']." name='".$this->form_fields[$i]['name']."' value='".$this->form_fields[$i]['value']."' size=".$csize." maxlength=".$this->form_fields[$i]['size'];
}
if ($num_extender!="no") {
$str.=" ".$this->form_fields[$num_extender]['javas']."> ";
$str.=$this->form_fields[$num_extender]['html'];
} else {
$str.="> ";
}
$str.="</td></tr>";
break;
ET CA MARCHE !!!!
Merci à dev de me dire si ça convient et de l'intégrer pour les futures versions
Ghorgy
|  Profil Citation
|
|
developpeur 24581
| Posté : 19-09-2003 18:06
c'est ok, se sera dans le P1 sauf l'espace juste après ton > (dans $str.=" ".$this->form_fields[$num_extender]['javas']."> ";) qui de trop à mon avis
Voilu |  Profil E-mail www Citation
|
|
ghorgy 35
| |