21,923 questions
0
votes
0
answers
15
views
Why my select elements not showing up in my stepdef class?
So I am trying to validate the facebook create account page as a practice. I captured the elements for first name, last name, email address, password, and gender. Then I captured the dropdown menu for ...
0
votes
2
answers
65
views
can not use an id that I saved in props as default value in react select
I have a component that renders a reusable dropdown list. When I use it to add a new project, I can set category. But, when I use it to edit the project, the dropdown doesn't show the selected ...
0
votes
1
answer
47
views
Yii2 DropDownList from Database Disable Option
Looking for a way to dynamically set a dropdownlist option as disabled.
In my controller, I dynamically add 'Fully Booked' to my description. My data returned in $accommodationList could look ...
2
votes
0
answers
54
views
Bootstrap 5 Dropdown Arrow displays incorrectly when the page is refreshed or accessed for the first time
I have a Bootstrap 5 dropdown menu using Vue.js and Nuxt.js :
<div class="collapse navbar-collapse justify-content-end" id="navbarSupportedContent">
<ul ...
0
votes
0
answers
29
views
Flutter: Set max Height for "DropDownMultiSelect"
Using package:multiselect/multiselect.dart : multiselect
The menu is too big.
I want to set MaxHeight for my Menu without migrating to new widgets.Couldnt find any way to do it.
Example code:
...
1
vote
1
answer
54
views
Excel Userform Dropdown List - Get data from all columns?
I created a userform with a combo dropdown list. I got it to work in general.
My issue is, is that I can only bound it to one column from what I can tell.
In the screenshot for example has 3 columns. ...
0
votes
1
answer
59
views
Can't see the content of the drop down menu
I am trying to make a Ui component, so when I click a button "attachments" a drop down menu should pop up and show the drop down menu items. I want to make the drop down menu to pop up as a &...
0
votes
0
answers
47
views
How to set the click event of each item in a ContextMenuStrip, whether root or children, all sub-items to a sub-item. By Recursion method
With this method, I collect all the ContextMenuStrip events and use them in a subroutine.
I have created a code to generate a click event for the root and all sub-branches inside the ContextMenuStrip. ...
0
votes
0
answers
74
views
Fluent ui Dropdown Still holding Selected value even my array and selected state are empty
I am working on word addin . i am using react framework using youman genrator. I have dropdowns that get data from an api . i am saveing this data in state .and use this state for showing dropdown ...
0
votes
0
answers
26
views
Nesting a drop down inside a section in a dynamic javascript form
I'm trying to use a drop down next to a simple number input within a section on a dynamic web page form. I am able to create a new section with a button, and I can use normal text or number fields ...
0
votes
1
answer
50
views
Display value selected from a custom drop-down list
I am building a custom dropdown list. Dataset for dropdown list is populated. But I can not display selected value from the dropdown list. Can someone please tell me where the error/wrong logic is ...
0
votes
2
answers
69
views
How to select the XPath of a drop-down option when the right-click function is disabled on that drop-down
I am unable to select an option from the drop-down menu. The right-click functionality is disabled on the drop-down, and whenever any button is clicked, the drop-down closes.
To work around this, I ...
0
votes
0
answers
38
views
How do I fix the overlapping lines in a MUI TextField dropdown with MenuItems
Notice how this drop down has what appears to be multiple outlines surrounding the label.
I'm not sure why that line is at the bottom. Here's the code:
<TextField
select
...
0
votes
1
answer
68
views
How to allow up and down arrow keys to wrap in menu
In bootstrap 5 menu, pressing up arrow key in first item or down allow key in last item does nothing.
How to make up arrow to move to last item in menu if pressed in first item and down arrow to move ...
0
votes
2
answers
416
views
How to automatically set a value in drop-down list based on a date
I read the following post which is 2023. How to automatically set a value in drop-down list based on a value from another cell in row - apps script
And I have it modified for my form, however, it ...
0
votes
1
answer
74
views
Dropdown on vue template not working even if the toggle function is called
I am trying a simple dropdown on a vue project. But the dropdown doesnt drop when I click on it. I have put the console inside the function. The message gets displayed on console that means the ...
-1
votes
1
answer
96
views
Dropdown menu duplicates Hover
I have a problem with the hover event in my metronic dropdown menu, when I have the cursor over the menu button the hover is correct, but when entering the options the menu turns white, I suppose it ...
-3
votes
1
answer
72
views
How to get "Results per Row" (from a 'clicked entry' off a "dropdown menu") to show up correctly? [closed]
Coding Hobbyist here trying to figure out how to: "Create a Digital Archive."
more specifically:
A.) "when someone stumbles upon this (HTML/CSS/JavaScript only) webpage, they'll see a ...
0
votes
0
answers
98
views
Google Sheets: How to have multiple cells reference/update the same dynamic drop down list?
I have just started (ie, less than a month ago) trying to dive into using google sheets properly. I am currently trying to create a self updating and detailed gaming sheet for Pathfinder 2e Kingmaker. ...
0
votes
0
answers
58
views
Dropdown Menu Not Staying Fixed With Button on Scroll
I'm building a dropdown menu in React, and I'm facing an issue where the menu doesn't stay fixed relative to the button when the user scrolls the page. Instead, the menu scrolls with the page, which ...
-1
votes
2
answers
422
views
How to refer to a different sheet based on the value of a cell?
I have an excel file with multiple sheets (Day1, Day2, Day3, etc. with no spaces).
On the master sheet I need to be able to pull certain data from each sheet when I select a value from a drop down ...
1
vote
1
answer
69
views
Dropdown Select Component Has Data One Step Behind
I have a dropdown menu in my app. When it is selected it triggers a method that changes the sortOption state, which then triggers a useEffect to sort the data (called allTabs). However, the data ...
1
vote
1
answer
66
views
Bootstrap 5 Dropdown is Not Toggling back
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Custom Admin Dashboard</...
1
vote
1
answer
214
views
Use plotly to plot multiple pandas column with a dropdown menu to select column
I have a pandas dataframe for which I am trying to a plot bar graph using Plotly with a dropdown menu to select by the stock name column, referring this answer.
But I am unsure how do I add multiple ...
-1
votes
3
answers
204
views
How can I create a drop-down list of available employees to fill a shift between a range of dates?
Given a pool of Employees, previously scheduled shifts, and a new unscheduled shift; can I create a drop-down list that only displays the names of Employees who are not scheduled in a range of dates ...