2,107 questions
0
votes
1
answer
44
views
How to unselect value from multi-select type field in Netsuite map reduce script?
I hope you are doing well! I am trying to unselect specific customer from sepcific item multiselect field in map reduce script. I am setting new customers in a field using setvalue. But my approach is ...
2
votes
2
answers
262
views
Jquery multi select dropdown with checkbox
I'm trying to achieve jquery multi select dropdown with checkboxes with customized apply and cancel button inside dropdown. When I select Select All, dropdown is closing unexpectedly, even I tried to ...
0
votes
1
answer
143
views
I want nested Multi select dropdown in Mudblazor
☐ SaaS
☐ OnPrem Options
☐ Cloud
☐ Hybrid
☐ Other
My select dropdown contains parent options - SaaS ,On Prem and Other and My OnPrem contains 2 child options Cloud and Hybrid. On ...
0
votes
0
answers
63
views
How to get multiselect parameters of Form::select method in jquery?
In Laravel 10 / jquery: 3.6.1 app with laravelcollective/html 6.2 library I need pass multiselect parameters to post request and having select :
<div class="flex-grow-1 w-100">
{!! ...
1
vote
1
answer
146
views
Dropdown menu disappears after form submission in livewire component
I'm working on a Laravel Livewire component with a multi-select dropdown. The dropdown options are dynamically generated with JavaScript, but after submitting the form, the dropdown options disappear.
...
0
votes
1
answer
499
views
How can I modify an element style inside a Telerik component using Blazor?
I am trying to modify the autocomplete attribute from an inside a TelerikMultiSelect component. This is the html code generated by the TelerikMultiSelect:
<div data-id="" class="...
0
votes
2
answers
110
views
Appending Checkboxes via AJAX Success using Bootstrap MultiSelect Checkbox List Dropdown
I am looking to append some checkboxes using a result of data from an Ajax call, However I am having a bit of trouble doing this.. My Response[i] items when iterating seem to be undefined. ...
1
vote
1
answer
2k
views
How to handle multi-select correctly?
I'm struggling with a multi-select dropdown component in my .NET 8 Blazor server-side app. I'm using MudBlazor select component to support the multi-selection.
I'm loading a list of departments from ...
-1
votes
1
answer
61
views
Add product variation multi select category field and save to database
I'm new to this. I managed to add a field in the product variations and to select the category code and to save this into the database and it works.
But the saved value is formatted in the database ...
0
votes
0
answers
72
views
Requires a polymorphic field to allow multiple selections in Dynamics CRM/365
I'm working on a project that requires a polymorphic field to allow multiple selections. I'm wondering if a PCF control can be used to achieve this. If so, please provide guidance and examples.
2
votes
0
answers
356
views
PrimeNG's multiselect is throwing an error when used with input signals
I have a Angular 18.1 application in which I am using PrimeNg 17.18.5 (which according to their documentation should be compatible with ng 18). In this application, I have a multiselect bound to an ...
0
votes
1
answer
88
views
How to add multiSelect Checkbox dropdown in anguler1 , Bootstrap3
i am new to angulerJS, so have no idea on how to add multi-select Checkbox dropdown list.
Here is my partial html that show multi-select. I want it to be in shape of dropdown with checkbox as shown in ...
1
vote
0
answers
138
views
How to drag and drop multi selected items?
I'm trying to select several elements in a list and drop them anywhere in this list. It’s easy to do one element at a time, but I couldn’t manage to select several and drop them Gif_1.
But if the List ...
1
vote
1
answer
194
views
How to Implement Multi-Parameter Queries in SSRS Report Builder with Databricks ODBC?
I'm currently working on a report in SSRS (SQL Server Reporting Services) where my data source is Databricks, accessed via ODBC. The report requires implementing a multi-select parameter for filtering ...
0
votes
1
answer
344
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 ...
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
1k
views
How to search in multiselect primevue and vuejs 3
I want to do a search on multiselect primevue, here I use the filter and
function @search="searchStorageLocations" to search. But it didn't work. Please help with solutions and guidance
My ...
0
votes
1
answer
35
views
Multi-select list vs Html helper PagedListPager
Using MVC EF.
I'm trying to get a multi-select list to work with PagedListPager. The issue is getting the array from the controller back to the view, and then rendering that correctly so that the ...
0
votes
2
answers
314
views
How to use <s:select> tag to multiselect with thousands of options in Struts 2?
I have the following multi-select block in JSP
inside a <s:form> tag. When I submit the form,
the action method works ok.
<s:select
id="prodSelect"
list="#application....
0
votes
0
answers
66
views
Clearing Multiselect in jQuery
$("#selUser").bind('change keyup', function() {
$('#selSubjects2').empty();
if($(this).val().length > 0)
$.each( $(this).val().split(','), function(i, val) {
var ...
0
votes
1
answer
99
views
By excel vba adding checkmarks to each options selected in a multi-select datavalidation dropdown list
By the following vba excel code which I found on the internet, I can select more than one option within a cell from the dv dropdown list at the same time. What I am trying to do is to add a checkmark ...
0
votes
1
answer
74
views
Autofilter in VBA when criteria is has more words separated by a comma and is in another sheet
I don't know coding. I want to write the following VBA code for a condition whose Criteria1 is in cell D1 in another sheet. please guide me.
Thank you very much for your effort.
Data sheet is in "...
1
vote
0
answers
550
views
Primeng's p-multiselect onFilter is not working properly
API and SP is working Perfectly fine. I am getting the response of 10 rows. Also I have console the array which is bind to multiselect , it is also showing proper 10 records But nothing is reflecting ...
0
votes
1
answer
328
views
Grafana variables template correct but not rendering each series individually
I am trying to learn more about Grafana and have a table that has Kubernetes cluster node CPU temperatures. I know this is available in other ways, but just wanted to create a dashboard using a ...
3
votes
1
answer
318
views
Multiple Product category Select for custom WooCommerce plugin setting page
I am creating a little plugin and have troubles to find out how to create multiple category selection in my settings page. I am using multiple product selection like this which saves the selected ...