in reply to Re^5: How to select many times from a drop down menu in the same form
in thread How to select many times from a drop down menu in the same form

True, but aesthitically drop down menu its more nice for me :). What i f i ahve 50 items how will i be able to display them in a single cell inside a table? it will mess the whole table up while pop menu wont. :)
  • Comment on Re^6: How to select many times from a drop down menu in the same form

Replies are listed 'Best First'.
Re^7: How to select many times from a drop down menu in the same form
by shmem (Chancellor) on May 06, 2007 at 14:36 UTC
    You restrict the size of your list via CSS. The list will have scrollbars.

    --shmem

    _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                  /\_¯/(q    /
    ----------------------------  \__(m.====·.(_("always off the crowd"))."·
    ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
      Yes i see what you mean that can be done, and if wedo it thsi way there is no need for Javascipt code now, right?
        Right. With a multi-select widget, your users select all items they want, optionally enter an item into the entry field for not listed items, and hit "submit". But that way they can only request one additional item at a time.

        Workaround for that limitation would be providing a textbox where they can enter more things, one per line. But that would mean that you have to parse the contents of the textbox.

        --shmem

        _($_=" "x(1<<5)."?\n".q·/)Oo.  G°\        /
                                      /\_¯/(q    /
        ----------------------------  \__(m.====·.(_("always off the crowd"))."·
        ");sub _{s./.($e="'Itrs `mnsgdq Gdbj O`qkdq")=~y/"-y/#-z/;$e.e && print}
        A reply falls below the community's threshold of quality. You may see it by logging in.