|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
Hello,
When I first enter my "Media Checkout" form, the first row information will show in the combo boxes that I created above. I would like to know if there is a way that my user can click on any row in the subform, and it will appear in the combo boxes above. Any help would be greatly appreciated. Thank you. Dawn |
|
#2
|
|||
|
|||
|
What you can do is!
<head> <script type="text/javascript"> function getID(waarde) { var ID; ID = waarde.deelnemers.options[waarde.deelnemers.selectedIndex].value; location.replace('invoeren_deelnemers.php?teamnr=' + ID); } </script> </head> And make a onchange so if someone select something in your checkbox the page reloads with that selected value! <select name='articals' onChange='getID(this.form);'> <option value='0'>empty</option> <option value='1'>Artical one</option> <option value='2'>Artical two</option> </select> and make in the top of your page something like ! If(value==1) <!-- View Artical 1 --> If(value==2) <!-- View Artical 2 --> Etc Good luck Bjorn ![]() |
![]() |
| Viewing: Dev Articles Community Forums > Databases > Microsoft SQL Server > Is there a way to click on a row in my form and it will show in my combo box? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|