6,512 questions
0
votes
1
answer
167
views
Blazor custom dropdown with HTML select and sorting by text, not value for enums
I'm trying to build a custom Blazor dropdown component for enums that is able to sort the enum members by their display value / text. I have the following code:
<div>
<select value="@...
1
vote
2
answers
1k
views
Bootstrap 5.3 events not working in jQuery .on event
This is such an odd issue. I've never had any issues like this before...
Here is my dropdown...
$('#mydropdown').on('show.bs.dropdown', function() {
console.log('hit 1');
});
$(document).on('...
0
votes
1
answer
54
views
DropdownMenu Widget issues = Flutter
I am trying to create a custom widget for DropDownButton. It seems to work fine. The onChanged() func is also working when I take console print of the changed value.
However, I am not able to view the ...
0
votes
1
answer
345
views
Power BI slicer dropdown with array values
I want to create a slicer for availableDataTypes field. I have array of values in availableDataTypes field.In the dropdown I want only [1],[2],[3] & none Options
It should be a multiselect ...
0
votes
1
answer
2k
views
In angular ag-grid, how to make certain cell to be editable
In angular ag-grid, how to make certain cells of a column to be editable.
In my grid, i have a column "status" and this Status column is a dropdown field and it will be editable only for ...
2
votes
1
answer
84
views
Cannot use Dropdown/Modal from Semantic UI in Next.js
I cannot use Dropdown/Modal from Semantic UI in Next.js. The code below can't work properly (no response when clicking the button)
'use client';
import Image from "next/image";
import * as ...
1
vote
2
answers
77
views
Dropdown with links: Saving state in local storage
I'd like to create a dropdown with links and save the dropdown state in local storage.
This is the code for the dropdown.
<select id="sort">
<option value="">...
0
votes
0
answers
317
views
Bootstrap 5 dropdown events works unexpectedly in Vue.js 3 app
As I found that Bootstrap 5 dropdown events works unexpectedly in Vue.js 3 app, I have made 2 versions of Bootstrap 5 dropdown to compare.
This is the HTML part of Vue.js 3 app
<main>
<...
3
votes
1
answer
594
views
AG Grid - Display Dropdown outside the grid boundary
I am using React AgGrid and have a custom cell renderer that displays a dropdown.
I can get the dropdown to display over the rows below but the dropdown clips at the bottom edge of the grid.
How can I ...
0
votes
1
answer
29
views
return a function result into dropdown options
I want to return the result of a function in my component into a dropdown options:
this is my template:
<th>
<p-dropdown
[options]="getNames()"
[required]="true"
...
1
vote
3
answers
2k
views
How to style the font in DropdownMenu Flutter items
I have a overflow problem in the list of items on my dropdown menu (print bellow). I'm trying to find a way to define font-size, or apply the overflow..
I followed the Flutter Doc from here: https://...
0
votes
1
answer
229
views
Multiple dropdown menus opening all at once
I built a "dropdown menu" that allows my content to be hidden until onclick event with HTML, CSS, and JS. However, the menus all open at the same time when one menu is clicked. I want only ...
0
votes
1
answer
784
views
Word Dropdowns, displaying the Value rather than the Display Name
I am trying to VBA my way into a content control drop down where I can select from the list of Display Name content, but on exit, the text that is actually put into the document is the Value content. ...
0
votes
0
answers
69
views
Laravel Take Value from dropdown on blade
im trying to pass date from the dropdown to a route that is defined id/year/month. anyway with this code i always get 1990 and 12, it ignores what is selected in the dropdown.
<div class="col-...
0
votes
1
answer
60
views
useEffect is not working for Autoselect Dropdown
The scenario is when user save the new category, the Category dropdown should be re-rendered with new value. Unfortunately this is not happening.
I tried two approaches:
When the dependency array is ...
1
vote
2
answers
348
views
I Want my MudSimpleTable Layout to be Static-Non Changing
My requirement is want my table layout to be fixed. My problem is When I select value in dropdown box,Table column width dynamically changes according to length of selected value in dropdownbox but I ...
0
votes
1
answer
41
views
Icon is not changing 2nd time when I click on the button
Above is the icon when in default. Its working perfect when I click to open the categories.
But the problem comes when I click on the button again to close the dropdown. The dropdown closes but the ...
0
votes
1
answer
121
views
Bootstrap 5.3 dropdown links are not working on mobile safari
I have a search input and I'm triggering the live search results div when I focus on search input. Results list works perfectly on desktop but even though it renders correctly on mobile phone, list ...
1
vote
2
answers
305
views
Creating a budgeting expense sheet - Adding a row with VBA
I have created a button to insert a row. Each row I add says "Insert expense here.
The problem is that when I click the button and insert the row, the row new row only populates where it says B7. ...
2
votes
1
answer
147
views
Is there a way I can get these 2 dropdowns to "work together" to filter the table
Hi I've got a table that I wanted to filter using a custom JavaScript dropdown filter function. Separately they work perfectly, but the issue comes in when I try to use both at the same time to filter ...
0
votes
1
answer
64
views
How do you add a dropdown list to a cell in Google Sheets with Google Apps Script?
How do you add a dropdown list with items ["Item1", "Item2", "Item3"] to cells A2:A11 in Google Sheets with Google Apps Script?
0
votes
1
answer
139
views
Set dropdown text after Li click of dinamically added items
Bootstrap 5. This is my code, just the UL since once the page is loaded the list of <li> come dinamically from a database.
<div class="btn-group">
<button id="...
0
votes
1
answer
41
views
In gridview each rows has 2 dropdowns. After selected the value in 1st dropdown it should show the dropdown value in 2 nd dropdown
dropdown in gridview dependent on another dropdown.
here is what i tried
aspx
<asp:GridView ID="gvProgram" runat="server" DataKeyNames="ChoiceName" ...
0
votes
0
answers
658
views
Using an ipywidget dropdown in Jupyter Notebook to declare a variable and carry it forward to future cells - only working if i run one cell at a time
I feel like this should not be difficult to resolve, but I am struggling nonetheless... I have a jupyter notebook which I am using to pull specific data from a SQL database based on some user inputs. ...
1
vote
1
answer
3k
views
Search component with a dropdown using svelte and shadcn-svelte
I'm trying to create a search component using Svelte and shadcn-svelte UI component library,
Where I'll have a dropdown visible below the search input, when the user type a text that does exist in the ...