Beheerder |
|
Oplossing:
Aanroepen via onChange=\"switchSelect(this.form, 'type');\"
Functie:
function switchSelect(form,x) {
if (x == 'type') {
form.gewicht.selectedIndex = form.type.selectedIndex ;
form.prijs.selectedIndex = form.type.selectedIndex ;
}
if (x == 'gewicht') {
form.type.selectedIndex = form.gewicht.selectedIndex ;
form.prijs.selectedIndex = form.gewicht.selectedIndex ;
}
if (x == 'prijs') {
form.type.selectedIndex = form.prijs.selectedIndex ;
form.gewicht.selectedIndex = form.prijs.selectedIndex ;
}
}
function switchSelect(form,x) { if (x == 'type') { form.gewicht.selectedIndex = form.type.selectedIndex ; form.prijs.selectedIndex = form.type.selectedIndex ; } if (x == 'gewicht') { form.type.selectedIndex = form.gewicht.selectedIndex ; form.prijs.selectedIndex = form.gewicht.selectedIndex ; } if (x == 'prijs') { form.type.selectedIndex = form.prijs.selectedIndex ; form.gewicht.selectedIndex = form.prijs.selectedIndex ; } }
|