A user interface widget that allows the user to select one or multiple of a set of values. The list of possible selections is only shown (dropped-down) after the users clicks the widget. This interface is also known as drop-down list or a drop-down menu.
Questions tagged [dropdownbox]
528 questions
5
votes
2 answers
Close ComboBox DropDown on mouse leave event
While developing a simple Windows Form UI applications, I am trying to create an effect to show and close dropdown on mouse events.
Like I can open the dropdown on MouseMove event by setting comboBox.DroppedDown = true;
However, this same is not…

Indigo
- 2,887
- 11
- 52
- 83
5
votes
3 answers
How to set select box selected value
I have one input field with variable width like small, large, medium.
I have CSS styling for that.
Example:
case 1:
case 2:
case 3:

kamala
- 87
- 1
- 1
- 6
4
votes
1 answer
Making a resizable dropdown widget with touch in flutter
I want to create a drop down menu like the image below, Which is opened by touching and dragging and closing by touching the outside.
before dragging
after dragging
Scaffold(
appBar: AppBar(
automaticallyImplyLeading: false
),
body:…

saeid gh
- 130
- 2
- 8
4
votes
7 answers
Display text and Dropdown in 2 lines instead of 4 lines
we have 4 Text & Dropdown with each have different dropdown boxes displaying in 4 lines as below :
We want to display 2 Text & Dropdown in one line & other 2 below that line.
I tried float : left ; , display :block; display: inline-block nothing…
user6619012
4
votes
2 answers
move up and down elements in a multiple select not working
I have created an angularjs app with multiple select upon which I am having up and down button , within which when I click up and down button corresponding movement of items should be done within the multiple select, I have a sample stuff which has…

Alex Man
- 4,746
- 17
- 93
- 178
4
votes
2 answers
RequiredFieldValidator not working for Dropdownlist
I have a Dropdownlist in my web page as follows.
user3122107
4
votes
2 answers
Css ul display is none when hover display is block
I'm working on a dropdown box but the only thing that doenst want to work is when I hover over the word Info in the unordered list the dropdownbox is not displayed.
I know I have display:none; in ul style but can you change that to display:block;…

RamonRobben
- 483
- 1
- 5
- 18
4
votes
7 answers
Open only dropdown that is clicked
In my current code, whenever I click to maximise one dropdown, the contents of the both dropdown will appear. I only want the the question that i click on to drop the answer down. Can anyone help me? I'm not good with jquery so I've tried various…

user3180760
- 43
- 3
4
votes
3 answers
How to pass other form data along with MVC File Upload?
I am trying to implement File Upload in MVC. I have the following code which works.
@using (Html.BeginForm("ActioName", "ControllerName", FormMethod.Post, new { enctype = "multipart/form-data" }))
{

Gadam
- 2,674
- 8
- 37
- 56
4
votes
1 answer
Bootstrap dropdown item binding with Ajax source
I have Bootstrap dropdown button, I want get data when user click this dropdown button instead of I need load country list at page loading time, here is my code;

Ericyu67
- 105
- 1
- 4
- 11
4
votes
1 answer
Setting the dropdown for the action bar item
I am setting the action bar and item by the below code and the respective image1 is shown. When the user clicks on show bookmark screen action item, it goes to other activity. In that activity I want another item(SELECT BOOKMARK TYPE ) to be…

rick
- 4,665
- 10
- 27
- 44
4
votes
4 answers
create a dropdown list with check boxes inside it
How to create a drop down list with check boxes inside it using plain Html and javascript? If not possible, can there be a chance to meet this requirement using c#.net? Kindly, help me.

user1545987
- 273
- 1
- 5
- 15
3
votes
3 answers
Value in dropdown box isn't refreshed
I have a dynpro screen with two input fields:
The sales order n°
The sales order line n° (in a dropdown list)
My problem is that the sales order line isn't refreshed after a different sales order n° is input. However the other output fields…

Cutter
- 1,673
- 7
- 27
- 43
3
votes
1 answer
Angular 4 : Binding dropdown with huge data set(10000+ records)
I am trying to bind Angular drop-down (Angular 4+) with 10000+ records, it's hanging the application, we are unable to perform any other operation post that.
I am just using *ngFor, for the same
3
votes
1 answer
ASP.NET C# Set OnSelectedIndexChanged from Code Behind
Im trying to set the SelectedIndexChanged from the code behind of a Web Forms application. I have a variable amount of dropdowns being added onto the page from the database and need a method to trigger each time one of the dropdowns change.
Im…

Adam92
- 436
- 8
- 23