Bonjour
j'ai un probleme avec le html:link
j'ai trois listes que je recupere comme ceci :
maintenant j'aimerai pouvoir récupérer les trois variables sélectionnées en utilisant la baliser html:link
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 <tr> <td width="103" height="21"> <html:select property="id_serv" onchange="filtreForm()" > <html:option value="Selectionnez"/> <html:optionsCollection name="alserv" value="id_service" label="serv_nom"/> </html:select> </td> <td width="103" height="21"> <html:select property="id_medecin" > <html:option value="Selectionnez un medecin"/> <html:optionsCollection name="almed" value="id_medecin" label="nom"/> </html:select> </td> <td width="103" height="21"> <html:select property="id_prest" > <html:option value="Selectionnez une prestation"/> <html:optionsCollection name="alprest" value="id_prest" label="prest_libelle"/> </html:select> </td> </tr>
et je ne sais pas trop comment m'y faire
Partager