Bonjour,
Voila ce que j'ai fais:
mais le problème qui se pose c'est que le champs ne s'affiche pas alors que le formulaire est instancié dans l'action normalement... Merci de m'aider...
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 <table cellpadding="0" cellspacing="0" border="0" class="display" id="example"> <thead> <th>Label<th> <th>Champs de saisie</th> </thead> <tbody> <tr> <td>Nom entrprise: </td> <td><?php $form['nomEntreprise']->renderRow() ?></td> </tr> <tr> <td>Adresse: </td> <td><?php $form['adresse']->renderRow() ?></td> </tr> <tr> <td><?php #$form['Ville'] ?> because</td> <td><?php# $form['tel'] ?> hes is ...</td> </tr> </tbody> </table>
Partager