similar to: Update second pulldown menu based on first menu selection?

Displaying 5 results from an estimated 5 matches similar to: "Update second pulldown menu based on first menu selection?"

2011 Dec 21
1
Re: [Ubuntu 10.10/wine 1.3.16] Nonexistent printers in pulldown
It seems this is general..at least I am having the same issues. I guess there are not many people printing from wine applications.. Did you make any progress in getting the entries deleted? The entries are in at least the following registry files: ~/.wine/user.reg ~/.wine/system.reg
2011 Mar 27
2
[Ubuntu 10.10/wine 1.3.16] Nonexistent printers in pulldown
The applications I run under wine (e.g., Quicken 2007, notepad) list "nonexistent" printers in their printer selection pulldown lists. Of the eight or ten listed, only two are really configured on my system. It appears that the wine list contains residue from previous installations / deinstallations of printers, which I had done via the cups configuration tool (system-config-printer
2005 Dec 27
2
creating a pulldown entry on the fly
My first ROR app is coming along nicely. This is definately a agile env. One of my last issues before inhouse deployment is creating pulldown entries on the fly. In particular, I''m writing a job tracking app for my company. We mostly do jobs for the same customers (law firms), so I have a pull down of law firms which is populated from a law_firms table. i.e assume only 2 tables for
2006 Jul 08
6
Trying to create pulldown select menu for US State form fiel
I noticed there is a country_select. Is there anything like us_state_select maybe? More specifically - I''m wondering if I manually have to populate an array with all the U.S. state abbreviations so users can select which state they live in while entering their mailing address. -- Posted via http://www.ruby-forum.com/.
2006 Jun 04
5
Creating pulldowns using loops
Creating looped pulldowns in PHP is simple so I can''t figure out why it seems to elude me in RoR. I want to create a simple pulldown list with the options and values "1" through "14." I have been trying to accomplish this with the .upto method like so: --START RHTML CODE-- <% options_array = [ 1.upto(14) {|i| print "[" i "," i "]"}