Tagged Questions

Multiselect is a user interface feature that allows the user to select more than one item in an items control.

learn more… | top users | synonyms

12
votes
0answers
2k views

jqGrid multi-checkbox custom edittype solution [closed]

For those of you trying to understand jqGrid custom edit types ... I created a multi-checkbox form element, and thought I'd share. This was built using version 3.6.4. If anyone has a more efficient ...
12
votes
6answers
8k views

Customizing the TreeView to allow multi select

The built-in WPF TreeView control does not allow for multi selection, like a ListBox does. How can I customize the TreeView to allow for multi selection without rewriting it.
8
votes
3answers
6k views

Replacing Ext.reg() (xtype) in ExtJS4?

I want to use the MultiSelect from 3.3 in Ext JS 4, as described in this previous question: Why are the Ext JS multiselect item selector files not included in the Ext JS 3.3 download and where are ...
5
votes
2answers
211 views

WPF Selector — How do I ensure that it's only going to allow a single selection and not multiple selections?

Basically, I have a control that I want to extend from the Selector Class. I know that Selector allows for multiple child items to be selected, but I don't want that. I only want a single child to be ...
5
votes
1answer
671 views

WPF XAML : How to disable multi selection in a DataGrid?

In a DataGrid like this : <DataGrid AutoGenerateColumns="False" Height="200" Name="dataGrid" IsReadOnly="True" ItemsSource="{Binding CollectionView}" > ... </Datagrid> How do you ...
5
votes
2answers
1k views

Quick way to clear all selections on a multiselect enabled <select> with jQuery?

Do I have to iterate through ALL the and set remove the 'selected' attribute or is there a better way?
4
votes
1answer
307 views

Drag-select with ListBox

I have a simple implementation of a ListView in WPF that allows me to select multiple items in the list by holding the mouse button and dragging over the items. However, while holding the mouse ...
4
votes
2answers
289 views

OpenFileDialog Multiselect problem

I have standart OpenFileDialog var openFileDialog = new OpenFileDialog { DefaultExt = "mpo", Filter = "Image file |*.mpo", Multiselect = true, RestoreDirectory = true, }; and when i ...
4
votes
2answers
642 views

jQuery multiselect dropdown with close button for selected items

Basically I want something like this. What are the ready-made options for me? Is there any proper short name for this kind of widget?
4
votes
4answers
3k views

WPF DataGrid multiselect binding

I have a datagrid that is multi-select enabled. I need to change the selection in the viewmodel. However, the SelectedItems property is read only and can't be directly bound to a property in the ...
4
votes
2answers
549 views

asp.net mvc strongly typed view model with multiselect

I would like to know how i can bind my form values to my strongly typed view from a MultiSelect box. Obviously when the form submits the multi-select box will submit a delittemered string of my ...
4
votes
4answers
8k views

Can't return a result set in the given context

When ever I try to call store procedure in mysql that sends back a result set, it keeps saying me that "can't return a result set in the given context". I've google it and some said it's mysql bug, ...
3
votes
2answers
44 views

Retrieving selected values from ListBox with multiselect

I have one WPF ListBox loaded using LINQ: lbxCalculosSec.ItemsSource = from p in database.CALCULOS orderby p.NOMBRECALCULO select new { ID = ...
3
votes
1answer
172 views

Synchronizing multi-select ListBox with MVVM

I have two views of some data: a list view (a ListBox now, but I've been meaning to switch to ListView) and a fancy graphical representation on a map. In either view the user can click an object and ...
3
votes
1answer
164 views

In WPF, how can I restrict selection in a DataGrid to only be cells in the same row or column?

We have a DataGrid that allows the user to multi-select cells. However, we have a unique business requirement. Specifically... First cell: You can select anywhere Second cell: Has to be either in ...
3
votes
1answer
628 views

jqgrid multiselect only selects rows on the current page, if paging is enabled. How to make it select rows across pages?

I noticed in the jqgrid demo (http://www.trirand.com/blog/jqgrid/jqgrid.html > Advanced > Multiselect) that only rows (visible) on the current page are selected if paging is enabled. Any tips on ...
3
votes
2answers
2k views

How to get the optgroup for a multiselect in jQuery?

I am using a multiselect with options grouped together. <select title="Fruits" multiple="multiple" id="fruits" name="fruits[]"> <option selected="selected" label="All" ...
3
votes
2answers
541 views

Pretty javascript multiselect widget suitable for Spring Roo / Web MVC project?

I'm looking for a Javascript multiselect to use on my Spring Roo / Web MVC project, and worried that I could spend a while adding a widget from a library that then breaks other stuff. Requirements: ...
3
votes
2answers
364 views

Multiselect Form Field in PDF

Using PDF, is it possible to create a single form element with multiple fields of which several can be selected? For example, in HTML, one can create a set of checkboxes associated with the same field ...
3
votes
1answer
1k views

jQuery change event on select isn't being triggered via other function changing selected attribute

HTML <select multiple="multiple" id="myID" name="myName"> <option value="blue">blue</option> <option value="red">red</option> <option ...
3
votes
2answers
1k views

Appending options to a select, using jQuery, resizes it?

In this small, but full example, I am trying to recreate a dual list box UI component. I simply wish to be able to move items from one box to another. (Would be nice if I could add sorting, but one ...
3
votes
2answers
3k views

Multiselect list not showing selected items in c# mvc using linq2sql

I've tried many different ways to pass the selected items to the multiselect list with no luck. Finally, I tried this, which I think should display all the items as selected and still nothing in the ...
3
votes
3answers
4k views

WPF TreeView with Multiple Selection

Does anyone know of a good implementation of a WPF TreeView with multiple selection? I am currently aware of one commercial implementation - http://www.telerik.com/products/wpf/treeview.aspx My ...
3
votes
1answer
758 views

Enable ListView multiselect by dragging

How do I enable multi-select in a WPF ListView by dragging? Setting the SelectionMode property to Extended does allow multi-select using Shift and Ctrl, but not by clicking and dragging. Setting the ...
2
votes
2answers
74 views

Why is the first element always blank in my Rails multi-select, using an embedded array?

I'm using Rails 3.2.0.rc2. I've got a Model, in which I have a static Array which I'm offering up through a form such that users may select a subset of Array and save their selection to the database, ...
2
votes
2answers
133 views

JQuery UI Multiselect how to get selected options values

wasted my day while searching how to get selected options values in JQuery UI widget by Michael Aufreiter. Here's the link to his demo site and github: http://quasipartikel.at/multiselect/ As a ...
2
votes
1answer
75 views

ViewBag oddity in creating a MultiSelectList

I have spent a lot of time scouring the various forums for help on MultiSelectLists in asp.net MVC3. Finally figured out how to solve my issue now I'm trying to cut down on my code and I've come ...
2
votes
1answer
133 views

Jquery-mobile's Multiselect control

How can we achieve to select all options in a multiselect control of the jquery-mobile framework?
2
votes
6answers
96 views

Deselecting all elements from a multi-select dropdown in jQuery

I have a multi-select drop down as following, where I have selected the options "Test 2" and "Test 3". <select id="edit-rec" class="form-select" multiple="multiple" name="rec[]"> <option ...
2
votes
1answer
51 views

Select classes don't work in chrome

I'm working on an multi select, the select part works fine on all browsers but the styling is only working in firefox. Its the following link: http://jsfiddle.net/PbYFT/119/ So my question is, how ...
2
votes
4answers
472 views

Get value(s) in jQuery MultiSelect dropdown?

I found this jQuery code which is easy to use, but I can't find a way to get the selected value. I am using Control 7, and would like to have a button beside that onClick show the values there are ...
2
votes
1answer
234 views

Drop-Down Combo-box in HTML (with Javascript or JQuery)?

I've seen this question many times online, but none of them really have what I need. Is there any available multi-select drop-down combo-box written in Javascript available, so that I can avoid ...
2
votes
2answers
1k views

With selenium getting the order of items in the dropdown or multiselect list

Using selenium I want to get the order of items or rather list of keys of the multiselect list or dropdown. Seeing in selenium API i see that we can get the index of the selected items but I want to ...
2
votes
1answer
2k views

Why are the Ext JS multiselect item selector files not included in the Ext JS 3.3 download and where are they?

I am trying to set up a multiselect item selector based on this sencha example code. However, after building it into my environment, I get this error: What could be causing this error and how ...
2
votes
1answer
654 views

File upload multi-select

I'm not positive if this is even possible, but is there any way to enable a user to ctrl+click (ie, multi-select) files on a website? Screen shot of what I would like to be able to do via an upload ...
2
votes
1answer
418 views

Multibinding Multiselection ListView

OK I have a weird one here. What I am trying to figure out is how to have one listview, populated by an ObservableCollection, update another ListView, populated by another ObservableCollection, based ...
2
votes
2answers
556 views

Find out deselected item in spark list with multiple selection

In a spark list I could use the change event to find out which item has been selected or deselected. The dispatched IndexChangeEvent object has the properties newIndex and oldIndex holding this ...
2
votes
2answers
7k views

Multiselect combobox with ExtJs

How do you implement a multiselect combobox as part of a Ext.FormPanel using ExtJs? I've been looking, but can't seem to find a solution that is compatible with the latest version of ExtJs (this ...
2
votes
1answer
303 views

Multi selection on System.Windows.Forms.DataGrid (CF)

Is there a way to do multi-selction on with the standard datagrid? (I am using the compact framework.) This is what I ended up doing: readonly List<int> _selectedRows = new ...
2
votes
2answers
2k views

.NET 3.5 Listbox Selected Values (Winforms)

I am BATTLING to get the selected values (please note VALUES not TEXT) from a Winforms Listbox that has multi-select enabled and has been bound to a database table getting the Name (as DisplayMember) ...
2
votes
2answers
756 views

Why isn't multiselect list showing selected items? MVC

I moved on and then came back to this, but I am still unable to get it to work. var companiesList = subcontractRepository.SubcontractCompanies(Subcontract.subcontract_id); ...
2
votes
1answer
494 views

Method to Allow User to Select Multiple Items - ASP.Net MVC

I have an e-commerce system that allows a product to have multiple categories. In the admin user interface, I'm going to allow the administrator to be able to add as many categories to the product as ...
2
votes
1answer
1k views

jQuery MultiSelect , how to get information about selected options

I have a problem , i know only the basics of jQuery , and i need to get the information with JavaScript about selected options from the list , i wasted 2 days searching for a good method , but ...
2
votes
2answers
1k views

How do I mimic Windows Explorer multi-select/drag-n-drop behavior in a DataGridView?

I'm trying to mimic the way Windows Explorer handles multiple selection. In a default DataGridView, you can select multiple items using Ctrl-click. But if you release the Ctrl key and then try and ...
2
votes
1answer
2k views

WPF Toolkit DataGrid MultiSelect with MVVM - Please Help

We're using the WPF DataGrid from the WPF Toolkit and are employing MVVM. I'm finding some challenges in using MultiSelect in MVVM and am sure that I'm just missing something simple. I can use the ...
2
votes
3answers
927 views

Is there a jQuery jEditable Multi-select plugin?

I'm using the excellent jEditable plugin for some in-place editing on my page. There is one spot I need a multiple select element. Is there a jEditable plugin that allows me to do this? I've been ...
2
votes
5answers
5k views

How to POST empty <select .. multiple> HTML elements if empty?

I have the following multi-select box in a HTML form, where user can select one or more option. <select id="eng_0" name="eng_0[]" multiple size="3"> <option ...
2
votes
4answers
4k views

Is there any native WPF Multiselect combobox available?

Even a 3rd party one will do. Thanks
1
vote
1answer
22 views

jqGrid Column Chooser dialog is resizable but when resized the inner contents are not stretched on resize

I am using jqGrid with ui.multiselect.js for column choosing and reordering. The dialog which comes up is resizable but when resized, the contents of the dialog are not resized. Do you have to hook ...
1
vote
1answer
74 views

ExtJS-3, Ext.grid.GridPanel, muti-row checkboxes: how do I submit all checked items at once?

I'm using ExtJS3 and I have a Ext.grid.GridPanel where each row has a checkbox on the left. At the top there are two buttons: 'refresh' and 'submit'. I want to be able to select multiple rows and ...

1 2 3 4