J JIK Feb 6, 2004 #1 Hi, I'm looking for a multi-select dropdown to use in my asp.net/C# app. Anybody have a tip? Jon
G George Durzi Feb 6, 2004 #2 <asp:listbox id="MyListBox" Runat="server" Rows="5" SelectionMode="Multiple">
J JIK Feb 7, 2004 #3 Thats a nice ListBox, But I want a dropdown.... George Durzi said: <asp:listbox id="MyListBox" Runat="server" Rows="5" SelectionMode="Multiple"> Click to expand...
Thats a nice ListBox, But I want a dropdown.... George Durzi said: <asp:listbox id="MyListBox" Runat="server" Rows="5" SelectionMode="Multiple"> Click to expand...
J Jos Feb 7, 2004 #4 JIK said: Hi, I'm looking for a multi-select dropdown to use in my asp.net/C# app. Anybody have a tip? Click to expand... I believe that the words "multi-select" and "dropdown" are contradictory. That's because as soon as you click on an item in a dropdown, the dropdown will collapse, thus preventing further selection. If you intend to select with the keyboard, then how is the user going to end the selection? The Enter key will post the entire form right away.
JIK said: Hi, I'm looking for a multi-select dropdown to use in my asp.net/C# app. Anybody have a tip? Click to expand... I believe that the words "multi-select" and "dropdown" are contradictory. That's because as soon as you click on an item in a dropdown, the dropdown will collapse, thus preventing further selection. If you intend to select with the keyboard, then how is the user going to end the selection? The Enter key will post the entire form right away.