multiselect

jquery multiselect from two selects into one?

I'm trying to figure out how to create a multiselect form that has two selects that allow you to move criteria into a third select. I did take a look at: http://www.quasipartikel.at/multiselect/ and //http://www.erichynds.com/jquery/jquery-multiselect-plugin-with-themeroller-support/ (I'm new, so I can only post one link... :-) )...

How to implement Master-Detail with Multi-Selection in WPF?

Hi, I plan to create a typical Master-Detail scenario, i.e. a collection of items displayed in a ListView via DataBinding to an ICollectionView, and details about the selected item in a separate group of controls (TextBoxes, NumUpDowns...). No problem so far, actually I have already implemented a pretty similar scenario in an older pro...

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 name: <div>Select one for Member of the School Board</div> <input type="checkbox" name="field(school)" value="vote1"> <span class="label"...

.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) and ID (as ValueMember) - I need the ID of the selected items. The listbox control has properties for SelectedValue to get one of the sele...

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 viewmodel. So how do I signal to the view that the selection has changed? ...

Databinding a multiselect ListBox in a FormView control

I have a multiselect ListBox within a FormView. I can't figure out how to setup the databinding for it. I can populate the listbox fine. If the listbox was a single select I could use say SelectValue='<%#Bind("col")%>' and that works fine. Is there something that I can bind to for a multiselect listbox? I've tried manually DataBinding by...

any ideas how to make checked treeview inside multiselect jqeury?

i planned to make checked treeview inside a multiselect jquery. The left side was the checked treeview, if we choose the child, the one moving to the right side was the child and the parent title, and if we choose the parent, all of the child will be moving right. I found some of the example, but they're in vb, can jqeury make something...

How to update a one-to-many relationship from a CheckBoxList, ListBox, etc?

Given 2 tables: Person PersonsFavoriteColors A person can have one or more favorite colors. These colors are updated with a multi-select control (CheckBoxList, ListBox w/ multi-select enabled). In the past, if I am updating the person's colors, I'd: Start Transaction Delete all color records for the person Insert records for each s...

jqGrid multi-checkbox custom edittype solution

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 solution, please pass it on. Within the colModel, the appropriate edit fields look like this: edittype:'custom' editoptions:{ custom_eleme...

WPF TreeView MouseDown

I've got something like this in a TreeView: <DataTemplate x:Key="myTemplate"> <StackPanel MouseDown="OnItemMouseDown"> ... </StackPanel> </DataTemplate> Using this I get the mouse down events if I click on items in the stack panel. However... there seems to be another item behind the stack panel that is the TreeViewItem - ...

Multiselect options in dojo data grid

Is there a way to have a multi select combo box for a editable column in dojo data grid? ...

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 List<int>(); private void dataGrid1_MouseUp(object sender, MouseEventArgs e) { int c = dataGrid1.CurrentRowIndex; if (_selectedRows.Contains(c)) { ...

Selecting values from a multiselect not working in webkit

Hello! The code below works fine in Firefox. However in Chrome and Safari it doesn't. Essentially it returns an array of values, then selects them from multiselect. However in Chrome and safari it doesn't select the items from the multiselect. $('form#movie select#movie_movie').click(function(){ var id = $(this).val(); $("...

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 question is similar, but doesn't have a working/current solution). This is what I have so far, but it's a single select: new Ext.FormPanel({ ...

How to get multiple select box values using jquery?

How to get multiple select box values using jquery? ...

jqGrid 'selarrrow' returning row numbers instead of row IDs

I can see from the jqGrid JSON data being posted to the browser that the row ID (denoted by "i" in the JSON row data) is coming through correctly, but when I make a selection and check the $('#list').getGridParam('selarrrow') it is showing the selected row numbers as opposed to their IDs. Does anyone have experience with this? Thanks U...

Is it possible to bind an attribute to a forms_helper.select in a partial?

In a Rails view, I'm trying to show a <select> drop-down list for a number of different string fields with restricted values. I've been trying to do this with a partial (below), but the current value is not being selected in the <select> list. Is it possible to do this in a partial? If so, how? Is there a better approach to take? ...

ReportBuilder 2.0 creating dynamic tables

I was wondering... In C# you can have a checkbox's and foreach checkbox checked you could do something like create a HTML table and populate foreach box checked.... i want to do the same thing in reportbuilder 2.0 on user selection of projects to create tables and fill foreach project (at a more basic level) if i could just create a...

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 information. But with multiple selection allowed this doesn't work anymore because newIndex and oldIndex could refer to indices of still selecte...

how to send the selected row values from jqGrid to server?

I have a grid with multiselect option true...so when I multiselected the rows and click on the button say "Release" it should send those rows to server ...Can any one point me towards right direction? ...