multiselect

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 on the first listview's selection and then use a valueconverter to check or uncheck a checkbox based on the selection combined with the cur...

Scroll ListBox to top selection

Is there any way to programmatically scroll down a multiselect ListBox to show the top selection? Using ASP.NET here. UPDATE (to clarify): There's a form with a multiselect ListBox with a lot of items (country list), so not all of them are visible at the same time. The user makes one or several selections and saves the form. Later, the ...

JQGrid onselectrow events - custom multiselect

Hey there! I've been working with JQGrid a lot, and would recommend it to everyone. The one feature I don't really like is the built in multiselect which doesnt use special keys like shift and ctrl, doesnt give you much control and forces checkboxes to be shown. I would like to implement my own multiselect as follows: In onSelectRow- c...

jqGrid multiselect behavior when pressing special key

What I was expecting from a multiselect behaviour is to behave just as normal as long as no special key is pressed. I mean, if you have a row selected and click on another with no other key pressed, then it should select the new one and deselect the old row. Well, jqGrid’s standard options lets you choose between always regular behaviou...

how to populate the selected row from 1st jqgrid to 2nd jqgrid ?

I have a grid displaying some information and when I select multiple rows and click on add order button it should display those rows in 2nd grid without making any call because its just show the selected row from 1st to 2nd grid....just like shopping cart application ? Is it possible with jqGrid? Moreover, if I selected more rows it sho...

Dynamically increase the size of a multi select drop down box

I've implemented this on mouseover and onmouseout like so: <select size="3" onmouseover="this.size=this.options.length;"> This is all well and good, except i don't want it only on mouseover, i want it always :) forever. Thanks in advance. ...

QML ListView multiselection

Hi folks! How can I select a few elements in the QML ListView and send its indices to C++ code? ...

multiselect from dropdownlist for web app?

I'm building a web app that will come back with a report. For certain parameters where the user has requested a dropdown list, they also want to be able to select more than one option at a time. e.g. show me all transactions from the states of TX, WV, and ID. The reason I've decided to go with the dropdownlist they requested and not a ...

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 tool, taken from just my standard file explorer: In case this is relevant, the back-end of the site is in C# and the front-end scriptin...

Get a list of attribute options from Magento

I've been grabbing attribute options from Magento like so: <?php if ($attribute->usesSource()) { $options = $attribute->getSource()->getAllOptions(false); } ?> It's been working fine until I tried to get the options for the built in 'color' attribute -- I got the following error: PHP Fatal error: Call to a member function setA...

mulit select listbox in wpf

how i can select five items in the single click on the list box?? if i click any item, i just want to +2 and -2 from the selected index. so my single click need to select five items in the listview. Am using C#(WPF). ...