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 aren't already present - any idea how to go…
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 required behavior is tricky as it's difficult to…
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?
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 loop, if I use alert then I have no problem. As soon…
I'm beginner in Django/Python and I need to create a multiple select form. I know it's easy but I can't find any example. I know how to create a CharField with a widget but I get confused of all the options inside fields.py.
For example I don't know…
I'm using the select2 jQuery plugin on a with multiple="multiple". I need to add values to the selected list (i.e. not to all the options, but to the selected options, without adding a new option).
I know I can set the selected options with…
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 still the getCheckedItemPositions()returns an array of…
I have a multiple select on my page, and I have an option disabled so that the user can't unselect them, but I can't work out how to get the value of the disabled option.
My code so far
// Get selected positions
var $selPositions =…
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 checklist, and return them upon clicking a "Submit"…
When rendering the page, the val() of a multiple select is set with a single value. For example, $("#my_select_box").val(1);
Then the user selects an additional value in the multiple select box.
When the form is submitted, only the newly selected…
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 for this:
I have the next select:
For any reason the name is comming with brackets and I can't change or add anything to the element.
I am trying to check if the select has any option selected, I have…