Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
3answers
555 views

Multiple selection in a TreeView

I am using a Windows Forms TreeView control in my program. I would like to allow the user to select multiple nodes at the same level by dragging their mouse pointer around (also called a "lasso" ...
3
votes
1answer
2k views

flex datagrid: how to do a multiple selection programmatically

I have I datagrid, on which I want to select multiple rows on a other user interaction than the one intended by the Programm. I'm wondering, whether I can programmatically select some rows depending ...
2
votes
1answer
290 views

how to add parameters with mulitselection enabled in ssrs 2008

Well, I have a table called Resource(ResourceId,ResourceName) and a table Session (SessionId, StartDateTime,EndDateTime,ResourceId) I have a line chart that shows the count of sessions for a given ...
1
vote
0answers
96 views

How to create multiple select box with Zend Framework?

Zend Framework has Zend_Form_Element_Multiselect element. But I haven't found any examples how to extend it and create a multiple select box which example is represented here: ...
1
vote
1answer
105 views

Doesn't iOS 5 include the ability to more natively select and track multiple UITableView cells?

I could have sworn this was a new feature in iOS 5, but I have been looking all over the place and not finding anything. Isn't there a more native approach to selecting multiple rows now? Thanks!
1
vote
2answers
560 views

GWT Customize CellList Multi-Selection Model for Mobile Devices

I have an application, that uses the MultiSelectionModel, and it works great, but I need the site I'm developing to work on mobile devices, and so I can't use the keyboard to assist in selecting the ...
1
vote
3answers
262 views

multiple selection from listbox in c#

I was wondering how do i allow user to make only make 3 selection from a list box.I am looking at this code,i think there is some logic error to this but i cant see what went wrong as im new to this ...
1
vote
1answer
628 views

Multiple Row Selection in Wpf DataGrid

I have been struggling for this issue for the last one month. Please Help me out. I have a WPF datagrid (datagrid1) in which i am populating a datatable its working fine, in the same UI i have another ...
1
vote
2answers
383 views

WPF : Keeping default style when inheriting from ListBoxItem

Hey Guys (and girls if any :) I needed a different list box selection policy than the one provided by default with WPF listboxes, i.e. beeing able to have an extended selection withou any modifier ...
1
vote
3answers
969 views

MouseEnter/MouseLeave and mouse left button down

I'am trying to implement a click and drag selection like the one in windows explorer (the blue selection rectangle that occurs when you keep the mouse button down and you move the mouse). So ...
1
vote
3answers
3k views

How to create a drop-down list in java swing with multiple item selection?

I'm aware of JList and JComboBox.....i need the combo box drop down functionality with multiple selection functionality that JList provides.... This is because the contents of the list are too huge ...
1
vote
2answers
97 views

How to indicate to user that a command affects a subset of a multiple selection?

Here is an example that illustrates my question. I have a program that lists 1000 items. I select 10 of 1000 items. The program enables a button indicating that a command is available for my ...
0
votes
2answers
44 views

IPhone: different row selected

When I select a row from a UITableView, that row and others below (several rows below the one selected) are also selected. Only the selected row is expected to be the selected one. My code is: - ...
0
votes
1answer
130 views

GXT Grid Checkbox Header Select/Unselect All

Working with GXT and using a checkbox selection model. I notice that when every row is checked, the checkbox header will also be checked, but the checkbox header has no functionality of its own. ...
0
votes
0answers
141 views

iOS 5 - Multiple selection in UITableView with SearchDisplayController

iOS5 introduced the multiple selection purpose, but does somebody know how to deal with multiple selection when filtering data from an array with a search display controller? Thanks in advance. AppPiƩ ...
0
votes
1answer
40 views

TFS 2010: Multiselection in WorkItems is it possible and useable in the webfrontend?

is in TFS 2010 a multi selection control (listcontrol) available and if so is it useable in the web frontend ? We have a customized form for test cases and would like to define multiple "verifier" ...
0
votes
3answers
171 views

JQuery Display divs on click of CheckBox

Here is the code I came up with, thanks to the suggestions below. Most all of them almost worked as offered, but none survived contact with the real world. Here's why, and the rest of the problem: ...
0
votes
1answer
304 views

UItableViewCell Custom ContentView with Multiple labels and Need to Preserve selection

I have the uitableview with multiple uilabels in each cell like a grid view. I added the uigesturerecognizer to do some action on each of these labels(text background will change). Everything is ...
0
votes
0answers
22 views

Android CustomListView Multiselectable

I have a list of Name & Number retrieved from database both stored in String[] phoneNumbers, name. How can I make a ListView with Checkbox and then upon clicking a button it does a check on those ...
0
votes
1answer
104 views

How to create comma seperated value in javascript on selection of values from multiple selection select box?

I need the values selected from multipleselect select box as commaseperated values so that I can use these values in AJAX call to fetch the data from db table using these values. Please help to me.. ...
0
votes
2answers
150 views

How do I reload the values of multiple select boxes with jQuery StickyForms?

I'm using jquery stickyForms to make some form values sticky, so that the user's entered values are restored to a form when the user returns to that form. It's works great, except I can't get it to ...
0
votes
1answer
145 views

Django: How to make a query for on object based on an M2M field (multiple selections for field on search form)

I need help coming up with an efficient way to do a search query for a set of objects, based on a M2M field. My search form is going to look something like Blue Cross Blue Shield's | eg: this image ...
0
votes
5answers
852 views

Get all movie clips inside a stage area

Is ther a way to get all movie clips inside a area with AS3 I need this to do multiple selection.
0
votes
2answers
252 views

Cakephp how to reduce number of rows displayed with the Multiple Select

I have a HABTM relation and when i use the following code. the Multiple Select is pretty long in size. i wanna know how to reduce the size. <label for="checkbox">Cuisines:</label> ...
0
votes
1answer
619 views

Unable to select multiple items from a listbox in a Windows Phone 7 application

How can I select multiple items from the listbox in a Windows Phone 7 application? e.g listboxName.SelectedIndex = 0; listboxName.SelectedIndex = 1; listboxName.SelectedIndex = 2; The above code ...
0
votes
1answer
114 views

advancedDatagrid multipleSelection: Was a row already selected?

after multiple Selection in a advanced datagrid, I want to check if the clicked row, was already selected. Anyway my idea below (in the nested if clause I want to check if the newly clicked item's ...