21,923 questions
3
votes
1
answer
43
views
How to get the value of selected text in select combobox by javascript in asp.net c#
How to get the value from selected text by select combobox?
Here is the aspx.cs code for bind combobox
service.BindHTMLDropdownList(cmb_labelno, "tbl_StockRunning", "StockTagNo", &...
0
votes
2
answers
231
views
How to pull data by row from multiple sheets based on a drop down list?
I am working on a workbook that has multiple sheets. There are a few columns that are Y/Ns. I was trying to pull entire rows from other sheets based off of a Y/N drop down list, so if I needed to know ...
0
votes
1
answer
30
views
Collapse menu without added JavaScript
In React Bootstrap, how to make a submenu collapse when clicked any its item, without using added toggle JS handler?
<Navbar collapseOnSelect className="bg-body-secondary" ...
0
votes
1
answer
29
views
jquery caught in unintentional loop with video time and select option
I am having issues with Video linking with select options looping.
When the time of the video reaches it's video.currentTime, it changes the select value #chapters which in turn changes video....
0
votes
1
answer
128
views
Display a multiselect dropdown on flutter
I'm new on Flutter, and i'm trying to do a simple thing: have a selection list with multi choices.
I'm a web developer and this is a native feature usually, but i discovered that's not the case in ...
0
votes
0
answers
71
views
How to create a new ComboBox in a ListBox, by pressing a Button. VB.Net
I am currently teaching myself how to code and I have come across something difficult. I have a form with 1 button (btnCreateNew) and 1 ListBox (listBox1). My goal is to create a new ComboBox within ...
1
vote
0
answers
56
views
Two dropdown menus to select Y and Y2 axes independently
I am trying to generate a plot which has independent dropdown menus for both Y and Y2 axes. I am able to implement a dropdown for either the Y1 or Y2 axis when the other is static. I have also ...
-1
votes
1
answer
75
views
Accessing Aria Labels and Drop Down Menu Selection - Selenium Python
I am having trouble trying to automate selenium to go into the site settings and change the Insecure content drop down menu from blocked to allow. Every approach I take I get the error the element can ...
1
vote
2
answers
787
views
Need to make a Query in Google Sheets from a multiple dropdown list into a cell containing coma separated values
I've got a Google Sheet with data (Columns A,B,C), a dropdown list (E) and source for this dropdown list (G)
https://docs.google.com/spreadsheets/d/1XY5Nfwi-DtXIV7PMkhax_60EpX5puawmUF-fl2qvEqk/edit?...
0
votes
0
answers
80
views
How to pin items in DropDown List Bootstrap?
I am using the latest version of Bootstrap as of 2024 and I have this dropdown menu of the most recent items. I want the user to have the ability to pin items in this menu so that they won't get over-...
0
votes
1
answer
47
views
Trying to create a drop down list that is able to filter out all other columns base on selection (calendar months)
I have a rather crude spreadsheet that tracks simple monthly data with each month in a different column. I'm hoping to create a drop down list in cell B6 or C6 which allows the user to select the ...
0
votes
0
answers
159
views
Dropdown menu inside a navigation bar doesn't work as expected in Apple touchscreen devices and some browsers
HERE is the code I copied from w3schools.com to have a clickeable dropdown menu inside a navigation bar.
It works okay in any desktop OS (I tried MacOS and Ubuntu) and any browser (I tried Safari and ...
0
votes
0
answers
26
views
Dropdown list does not update the selected item immediately React
I use 2 dropdown lists to implement my requirement. I get the data from an endpoint and add 2 items to that data. I will change these data into dropdown lists. When I select the BLEDevice and Camera ...
0
votes
2
answers
65
views
Flickering near button's right edge
When you move the cursor close to the right edge of "Projects", it starts flickering.
:root {
--light-gray: #979797;
--dark-gray: #3D3D3D;
--orange: #ff8400;
--gray: #...
2
votes
1
answer
627
views
Flutter removing dropdown menu's trailing icon with clickable area
I want to completely remove dropdown menu's trailing icon. I added below code to remove it.
DropdownMenu<ColorLabel>(
trailingIcon: SizedBox.shrink(),
selectedTrailingIcon: SizedBox....
0
votes
1
answer
319
views
How do you programatically close an opened DropdownMenu in flutter
I've been trying to find a solution for this problem to no avail.
Is there a way in flutter (currently running version 3.22.2) to programatically close an opened DropdownMenu , ie. closing the ...
0
votes
0
answers
40
views
DropDownList closes immediatly after open in template in ListBox
I have two connected listboxes. First listbox has list of divs with unique dropdownlist in it.
I want have opportunity to select and change value in any of that dropdownlist and drag and drop one of ...
0
votes
1
answer
119
views
dropdown_search flutter search functionality not working
DropdownSearch<ProductModel>(
asyncItems: (String filter) => getData(filter),
itemAsString: (ProductModel u) => u.name,
onChanged: (ProductModel? data) {
instcatname = data?.name;...
0
votes
0
answers
128
views
How to apply VBA code enabling multiple drop-down selection to a range of cells
I am using the code at the end of this message to enable multiple option selection from a drop down list in excel. The code works fine, but if I want it to apply to more than 1 cell, i need to ...
0
votes
2
answers
44
views
Trying to have my dropdown menu open directly under the div
I have a menu with one dropdown item. However, I can't make it work so it open under the associated div item.
Here's my code :
.dropdown {
position: relative;
}
.dropdown-content {
display: ...
0
votes
2
answers
44
views
Dropdown menu doesn't appear when I pass the mouse on navbar
Good day,
I am trying to create a dropdown menu on my freshly new website but cannot find the reason as to why it does not appear.
It should appear under "About" but when I click on it ...
0
votes
1
answer
95
views
Align a dropdown submenu with its parent heading
I'm building a Dropdown Menu and I've got stuck with the CSS when trying to align the Sub-Menu-1 so that its centred on the main menu heading.
See this image
Ive gone round in circles and the only ...
0
votes
1
answer
827
views
React Native Expo custom Dropdown inside a modal not showing up correctly
I recently created a custom dropdown component (code snippet below) following a YouTube tutorial. The dropdown works great but there is one big styling issue that I cant figure out. Whenever I click ...
0
votes
0
answers
12
views
CSS: Why won't my dropdown display change when checkbox is :checked? [duplicate]
I'm trying to set .hamburg-nav to display: block; using a checkbox with :checked.
If I hard-code .hamburg-nav as display:block then it appears perfectly.
If I click the checkbox, nothing appears to be ...
0
votes
0
answers
36
views
Why does my selectedvalue not change, and the form is not showing?
Here I add a global function to change it, because I need them in the next case. But both things are not working.
Widget form(String? num) {
return Container(
width: screenWidth*0.7,
height: ...