Tagged Questions
The multiple-select tag has no wiki summary.
17
votes
7answers
19k views
Is it possible to configure a UITableView to allow multiple-selection?
For the iPhone, is it possible to configure a UITableView such that it will allow multiple-selection?
I've tried overriding -setSelected:animated: for each UITableViewCell, but trying to fudge the ...
10
votes
5answers
18k views
How can I send an array to php through ajax?
I want to send an array constructed in javascript with the selected values of a multiple select. Is there a way to send this array to a php script using ajax?
5
votes
4answers
2k views
Returning values from multiple selection ListView
Edit: Okay, I found a solution. Don't know that it's the proper solution, but it does work correctly. Added to the code below.
I'm trying to allow a user to select a number of directories from a ...
4
votes
4answers
133 views
How do I allow a user to select zero options from a multiple selection box in rails?
I have a settings model with a column options, and set it to serialize with serialize :options. In my view, I have a multiple selection box, using select("settings", "options", ...
3
votes
2answers
111 views
is there a better way to code a quotation form?
i am seeking advise and probably example code, links that will help me improve my quotation form. the current scenario is like that:-
dynamic (select combo) rows are generated for items(from mysql ...
3
votes
2answers
2k views
Grails: Load data on one ComboBox depending on another
Let's say I have a combobox with the options GENERAL, AIR, GROUND, and SEA
<g:select name="group" from="${['GENERAL', 'AIR', 'GROUND', 'SEA']}" valueMessagePrefix="default.category" ...
3
votes
2answers
444 views
Problem with multiple select removing more than 1 option
Ok, there seems to be a problem with the JS Code for Opera browsers, as it only removes the last option tag that is selected within a multiple select tag, can someone please help me.
Here is the HTML ...
3
votes
2answers
3k views
How to use SqlDataReader if I'm having more than one select statements in a stored procedure
I have coded three select statements in stored procedure in Microsoft SQL Server 2005. Both select statements return multiple number of records and table list for select statements is different. One ...
3
votes
2answers
11k views
How to post the selections of an HTML List Box with multiple selected values
I have a listbox on an HTML form with a Submit button. The listbox has multiple selection enabled. I am able to select multiple values in the listbox, but I don't know how to figure out what values ...
2
votes
1answer
319 views
allow new values with chosen.js multiple select
I'm using the chosen.js plugin http://harvesthq.github.com/chosen/ with jQuery to allow the user to select multiple options from a select. However, I now want to be able to let them create values that ...
2
votes
1answer
1k views
Using ExtJS with multiple select
I have a form with next code:
<select multiple="multiple" id="something" class="boo" name="foo">
<option value="40">AAAAA</option>
<option ...
2
votes
2answers
148 views
MySQL multiple table select with WHERE not comparing 2 tables
I have the beginnings of a query:
SELECT tf_threads.*, tf_posts.* FROM tf_threads, tf_posts WHERE tf_threads.thread_id=54
Of course, it's just the start of one - I'm moving one step at a time so it ...
2
votes
3answers
7k views
Android ListView with multiple select and custom adapter
I have a ListView with a custom adapter. The ListView allows multiple select, but somehow it's not recognising when an item is selected.
I've already made the adapter items extend Checkable, but ...
2
votes
1answer
660 views
Remove initial selected item in jQuery ASM select
I am using the rather fantastic jQuery multiple select plugin, ASM select
This plugin is so close to my needs I have to try and fix the one and only bug I can find.
On initial load, the selector ...
2
votes
2answers
621 views
How to deal with multiple values of <select> in PHP?
<select id="industryExpect" multiple="multiple">
<option value="1">item1</option>
<option value="2">item2</option>
<option value="3">item3</option>
...
...
2
votes
2answers
591 views
C# Linq-to-SQL Trying to recive multiple selects
I got this SQL code in a SP: (MS SQL 2008)
DECLARE @type tinyint
SELECT @type = Type FROM Contents WHERE ContentID = @ContentID
SELECT [ParentContentID], [Headline], ...
2
votes
1answer
1k views
receive Multiple values with MVC action method from Multi Select listbox
I am rather new to MVC.
I am trying to post data (An array of type "SurveyAnswer") to a MVC action method from an HTML form.
Everything works fine with I pass back data from a html input that has a ...
1
vote
2answers
177 views
c++ win32 checkbox list - multiple selection
i would like to add a list of check boxes to my win32 application, because i need a control element with multiple selection. I've searched the msdn docs and found exactly what i need in this article: ...
1
vote
1answer
149 views
How to implement multiple selection on Rails 3
I have an index where I'm showing a list of documents. I would like to implement a multiple select in order to do different actions to the documents the user has selected
I have created a
<%= ...
1
vote
1answer
232 views
Best way to combine multiple advanced mysql select queries
I have multiple select statements from different tables on the same database. I was using multiple, separate queries then loading to my array and sorting (again, after ordering in query).
I would ...
1
vote
3answers
99 views
mysql select based on two criteria
I'm a little rushed for time so I know I could look for the answer myself but stackoverflow is faster! :)
I have a table with data let's pretend it is product information. the table keeps track of ...
1
vote
1answer
599 views
HTML multiple selection listbox spread across multiple columns
I would like to make a multiple selection listbox in HTML that can have it's values spread across multiple columns.
I do NOT want multiple columns for each option, I would like all the options to ...
1
vote
1answer
4k views
Javascript Get Values from Multiple Select Option Box
This one is driving me nuts. It’s got to be something simple and stupid that I am overlooking.
I have a multiple select box in a form. I am just trying to get the values that are selected. In my ...
1
vote
2answers
2k views
Android - setSelected in OnItemClick in ListView
I am trying to set item selected in OnItemClick event in ListView and it just wouldn't leave item selected. What am I doing wrong?
lView.setOnItemClickListener(new OnItemClickListener()
{
...
1
vote
2answers
403 views
How repopulate/reselect/autoselect the multiple select box values on basis of csv from database?
I have a form which is displayed when there is some editing is required in data. This form contains the multiple select box field i.e.,
<select name="multiple" multiple>
<option ...
1
vote
3answers
841 views
Zend Multiselect Element is posting only one selected values
I am creating multiple select element like this and it is showed successfully on form:
$element = new Zend_Form_Element_Multiselect('clinics');
$element->setLabel("Clinics");
...
1
vote
4answers
811 views
PHP email form multiple select
I'm trying to set up a simple PHP contact form for a website and I need some help modifying the PHP to list multiple items from a select menu and would appreciate the help. I'm a graphic designer, not ...
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 ...
1
vote
3answers
718 views
Problem implementing a UITableView that allows for multiple row selections
This
- (void)tableView:(UITableView *)tableView didSelectRowAtIndexPath:(NSIndexPath *)indexPath {
UITableViewCell *cell = [tableView cellForRowAtIndexPath:indexPath];
if (cell.accessoryType == ...
1
vote
1answer
454 views
How to populate a field based on selection in previous field?
In the form that we designed, we have a "States" field that allows its users to select multiple states at a time. There is a "City" field which should be populated as per the selection in the "State" ...
0
votes
1answer
57 views
Multiple Select Dao Mysql Spring MVC
I want to build in a select with the possibility of marking more elements. So multiple="true". I use mysql and the Dao Technology of spring. I get the values for the select from database successfully. ...
0
votes
2answers
29 views
post multiple multi-select boxes
I have a form that I'm using to create time ranges throughout a week. Right now it is select the day of week, start time and end time. I have javascript appending a new grouping of this same form and ...
0
votes
0answers
31 views
Multi-Select Query Through PHRETS RETS System
I've got a system running RETS through the PHRETS system. I have a form, that runs through a query to pull out results, and we're adding in multi-select boxes.
So far, my code looks like this for ...
0
votes
1answer
55 views
How to uncheck item checked by setItemChecked ()?
I am using a ListView with MULTIPLE_CHOICE and to get the selected items back i am using setItemChecked() method.
It works fine as i am able to see the previously checked items.
The issue is that if ...
0
votes
1answer
55 views
problems selecting a mutliple select value from database in Rails 3
ANY insight here is greatly appreciated.
From inside of a form_for in rails, I'm inserting multiple select values into the database, like this:
<div class="new-partner-form">
<%= form_for ...
0
votes
2answers
41 views
Multiple select in an for loop is losing it's data when returning to the form
I have an form with an multiple select in the while loop:
while ($row_i = mysql_fetch_array($res_i))
{
$i++;
// maak select name
$name_bewerking_id = 'bewerking_id'.$i;
?>
...
0
votes
0answers
157 views
Style disabled multiple select – google chrome
I’m trying to figure out how I can go about styling a disabled multiple select element, for google chrome so you can see the selected items.
I’ve seem to have it working in:
Mac: firefox, safari and ...
0
votes
2answers
102 views
mySQL Count rows for each ID in a table
Database schema
----------------------------------------------------------
| id | killed | killed_by | killed_uuid | killed_by_uuid |
----------------------------------------------------------
...
0
votes
1answer
238 views
Adding services to a user using multiple selections in MVC3
I have a problem and don't know where to start as I am new to MVC. I have three tables:
User (UserID, Username, etc...) This defines users.
Service (ServiceID, ServiceName, etc...) This defines ...
0
votes
1answer
314 views
Django multiple select with JS
Can anyone tell me, how(if it's possible) can I make select with JavaScript such as autogenerated select in admin panel (using which we select user permissions)?
0
votes
2answers
695 views
jquery / php select multiple selected options from php array in jquery
I'm trying to produce a multiple select list with selected options based from a php array, in jquery. I can't seem to get it working, this is my code:
My select list:
<select name="modules[]" ...
0
votes
1answer
725 views
Jquery remove/append item from multiple select to multiple select
I have 3 multiple selects. In the first Select1(left) I load a group of modules. In the 3rd Select3(right) I load another group of modules. The user can select from the Left and hit an add to remove ...
0
votes
2answers
407 views
CSS and/or jQuery to add little clickable image to multiple select list
I have a select list with multiple rows, and I want it to have a small X image at the end of each row so it deletes that row.
Any idea how I can do that through CSS or jQuery or something?? Thanks
0
votes
1answer
574 views
Grails: Add value of two g:select to a HTML multiple select list
I have two g:select comboboxes that I want to add to the multiple select list when clicking an image.
Here is the function in javascript:
function addToList(list,firstOpt, secOpt)
{
...
0
votes
2answers
798 views
Rails multiple select box issue for search
First off here is my model, controller, view:
My model, this is where I have my search code:---------------------------
def self.find_by_lcc(params)
where = []
where << "category = 'Land'"
...
0
votes
3answers
708 views
Selecting Multiple Options creates Multiple Inputs
I have a select field in a form that allows you to select multiple options.
I need to create a new input textbox for every number of options selected, automatically.
For example, if you select on ...
-4
votes
2answers
180 views
What will you do to optimize MySQL performance in this case?
$query = "select * from a ...";
if($result = mysql_query($query,$con))
{while($row = mysql_fetch_array($result);)
$arr[0][] = $row;
}
$query = "select * from b ...";
if($result = ...