Tagged Questions
The optgroup tag has no wiki summary.
9
votes
3answers
4k views
How to hide optgroup/option elements?
Is there a way to hide option or optgroup HTML elements? I've tried calling hide() in jQuery, and also using regular Javascript to set style.display='none'.
It works in Firefox but not in any other ...
7
votes
2answers
950 views
Optgroup drop-down support in MVC - Problems with Model Binding
I wonder if anyone can shed some light on this problem..
I've got an option group drop-down for selecting a person's ethnicity – however it’s not storing the value in the model.
ViewModel
...
6
votes
5answers
7k views
Nesting optgroups in a dropdownlist/select
I have created a customer c# DropDownList control that can render out it's contents are optgroups (Not from scratch, I edited some code found on the internet, although I do understand exactly what ...
5
votes
2answers
5k views
Adding optgroups to select using javascript dynamically
I have a dynamically populated (by ajax) select box with resulting options like that:
<select id="destination" name="destination">
<option value="london-paris">London-Paris</option>
...
4
votes
7answers
210 views
select 1st option in a multi group dropdown with jquery
I have dropdown very similar to this:
<select id='someSelect'>
<option value="0">---select one---</option>
<optgroup label="Bikes">
<option ...
3
votes
1answer
251 views
optgroup for select field - both group and option fields in same table. How can I do this?
I have a search form that searches a table in my database. The table has the following columns:
icao - name - country
I have the php that will place these fields in select options for each row with ...
3
votes
2answers
2k views
Jquery – Select optgroup in select
I have a select with 2 optgroups. Is there a way to call an function only if an option from the first optgroup is selected and call another function if an option from the second optgroup is selected?
3
votes
2answers
2k views
How to get the optgroup for a multiselect in jQuery?
I am using a multiselect with options grouped together.
<select title="Fruits" multiple="multiple" id="fruits" name="fruits[]">
<option selected="selected" label="All" ...
3
votes
3answers
437 views
<optgroup label='-------'></optgroup> gives xhtml validation eror
Error: End tag for 'optgroup' which is not finished. You have probably failed to
include a required child element. Hence the parent element is "not finished",
not complete.
I want to achieve ...
3
votes
2answers
3k views
Formtastic select with grouping
Now with Formtastic I have plain select:
= f.input :category, :as => :select, :include_blank => false, :collection => subcategories
Here I show only children categories. I use acts_as_tree ...
3
votes
3answers
1k views
In Django form, custom SelectField and SelectMultipleField
I am using Django everyday now for three month and it is really great. Fast web application development.
I have still one thing that I cannot do exactly how I want to.
It is the SelectField and ...
2
votes
2answers
98 views
GroupBy in JavaScript to group JSON data and populate on optgroup
I am a little bit lost.
I am getting this JSON:
[{
"id": "210",
"name": "Name 1",
"category": "Category 1"
}, {
"id": "187",
"name": "Name 2",
"category": "Category 1"
}, {
...
2
votes
2answers
83 views
How to add optgroup to dropdown loop?
I have a loop that displays a list of variables in a dropdown box (based on the filtered category). I'd like to add in option groups (using subcategories) from my table. How can I add this to part ...
2
votes
1answer
1k views
How to indent multiple levels of select optgroup with CSS?
Just trying to indent optgroup blocks by nesting depth really, I've tried a general margin-left rule, nested elements then trying to apply the same rule, tried padding-left... is indenting like this ...
2
votes
3answers
167 views
What is the Swing-equivalent to HTML <optgroup>
I want my JComboBox to group multiple options together, similar to the HTML optgroup:
<select>
<optgroup label="A">
<option/>
<option/>
</optgroup>
...
1
vote
1answer
34 views
How to include a “Please select…” (default/prompt) in a grouped dropdown list?
The code I am using for the dropdown list is this:
<%= f.select :post_type_id, option_groups_from_collection_for_select(@categories, :post_types, :name, :id, :name) %>
It neatly divides the ...
1
vote
1answer
59 views
calling a javascript function from a ROR controller ruby
I have a function written in javascript that i would like to call (use) in my ruby on rails controller(.rb). The function dynamically creates and populates a select with optgroup
How would I go ...
1
vote
1answer
184 views
Dropdown-Menu with optgroup
i am trying to create a dynamic dropdown-menu that receives its entries out of an xml-file at script-startup.
first i tried a static version like this:
Tr(td([popup_menu( -name=>'betreff', ...
1
vote
1answer
364 views
Bind Dropdownlist with optGroup from sql datasource
I have to bind a Dropdownlist with coutries which should be grouped by region, I have found a sample code from the following link,
...
1
vote
2answers
438 views
ASP.Net MVC 3: optgroup support in Html.DropDownListFor
How can i make my DropDownListFor support optgroup?
Is there anyway to do it?
Notice that this is DropDownListFor, means that it support DataAnnotation client validation
1
vote
1answer
2k views
JQGrid Edittype: 'select' using dataurl returns <select> with <optgroup> not saving select value
I have a JQGrid column with edittype:'Select' using dataUrl to return a list of Accounts with groups for the different Account groups.
My issue: when saving the row no value is passed to the ...
1
vote
2answers
159 views
Tutorial for cross-browser manipulation of select elements
Could you point me to tutorials that explain how to manipulate "select" drop-downs with JavaScript: add/remove options, add/remove optgroups, move options between optgroups, reorder options, etc.
I ...
1
vote
0answers
384 views
Select with optgroup - Struts1 / jQuery
I've created a select item with some nested optgroup. It was not quite easy, but now I need to set this select to a default value with a determined option of a determined optgroup when another select ...
1
vote
2answers
390 views
Using databinding to populate a HtmlSelect with optgroup elements in asp.net
I am using asp.net and have a HtmlSelect element on my page (with runat="server"). Normally I will just set the DataSource to some loaded data and DataBind. However in this case the data has one level ...
1
vote
1answer
842 views
WPF ComboBox “option group (optGroup)” type behaviour
I want to have a wpf combobox that displays the dropdown list box with the options grouped under a heading like the <optgroup> behaviour in html. Has anyone seem something like this done before?
...
1
vote
2answers
466 views
jQuery: Easy way to quick select a whole optgroup in select box
I use a jQuery function similar to the one in this thread:
http://stackoverflow.com/questions/1473897/easy-way-to-quick-select-a-whole-optgroup-in-select-box
But, when I click an <option> now ...
1
vote
1answer
1k views
Check if optgroup by id/label exists in jquery?
I have a dropdown, and in another process add optgroups/options to that dropdown, and that part works fine.
But I may need to add similar optgroups, with more data, and I want to check for the ...
1
vote
3answers
3k views
some jQuery/javascript help. Add items to optgroup
I have an array called tmp
var tmp = ["05", "13", "27"];
if an option value is equal to a value within tmp, I want to add that option to a particular optgroup, else add it to the other optgroup. I ...
1
vote
4answers
3k views
Easy way to quick select a whole optgroup in select box
I have a select box in which i can select multiple options. In the select box are multiple optgroups.
Is there an easy way to select a whole optgroup at once in javascript?
1
vote
1answer
762 views
Dropdownlist with <optgroup>s for version 1.1 of asp.net?
Is it possible to create a select box containing optgroups with asp:DropDownList in version 1.1 of asp.net?
Similar question has been asked here and elsewhere for newer versions of asp.net with ...
0
votes
2answers
21 views
optgroup get in php label associated
I have following code in a html form
<select name="category" class="input" onchange="ShowTB(this,'suggest');">
<option value="0" selected="selected">
[choose yours]
...
0
votes
1answer
9 views
Bug in select/optgroup using keyboard accelerators in webkit?
See http://jsfiddle.net/3EksU/2/
With Safari and Chrome in the example, if you select (without opening the drop down) and I press a letter key on the keyboard, the value in the select box if rotating ...
0
votes
1answer
76 views
Getting categories from database to HTML Optgroups and options in php
I am trying to get my categories from the database with their subcategories into <optgroup> and <option> tags and I want the parents to be <optgroup> tags but I can't loop through ...
0
votes
1answer
59 views
Is it possible to make an option of a select dropdown appear as optgroup via css
I am actually populating options from xml for my dropdown and Now adding an optgroup to select is a challenge. Can I add them manually and change the behaviour via css
0
votes
0answers
42 views
Using jQuery and Ajax
I am trying to postback the values from a form into another div, but am not able to figure out how to get the values from both the optgroup.
Any idea how I can go about it?
My html form codes:
For ...
0
votes
1answer
87 views
how to make optgroup in asp.mvc?
MVC newbie here again!
I have two lists in my controller.
IList<Cars> allCars = _repository.GetAll<Cars>();
IList<Bikes> allBikes = _repository.GetAll<Bikes>();
Cars { Id, ...
0
votes
0answers
287 views
User-friendly Multiselect with optgroups save and restore using Ajax
The code below supports multiselect with optgroups. It does Ajax save and restore of the users option selections. It serializes the form, sends the data to a PHP script which sends it back without ...
0
votes
0answers
77 views
jQuery and Internet explorer with optgroup tag
I have a select menu with the following structure:
<option class="level-1" value="284">2.1.</option>
<option class="level-2" value="285">2.1.1.</option>
<option ...
0
votes
2answers
415 views
Convert UL to SELECT w/OPTGROUPs
I'm trying to convert (with jQuery) a multi-level UL into a SELECT dropdown with the nested UL group being wrapped in OPTGROUPSs. I'm messing around with the idea of using this technique to make ...
0
votes
2answers
43 views
Get the selected option list in array to send
I need to get the selected values for filtering a table.
My selection code is as follows
<select id="myGroupFilter">
<optgroup label="Group0">
<option value="1">Value ...
0
votes
2answers
161 views
Categories and subcategories in optgroup
I want to have a Hierarchical Data in select box with php:
But when I use optgroup, the <optgroup> couldnt have a value.
Is there any way to have a Hierarchical Data like this image?
Thanks ...
0
votes
1answer
381 views
zend framework - Remove optgroup from select box
In zend framework, how do you guys remove the optgroup from a select element?
Zend puts them by default but I don't want it.
I would think there would be an option like
array(
'optgroup' => false
)
...
0
votes
2answers
326 views
Submit form on select (using Drupal)
I can't work this out for the life of me. Using Drupal and have a form that I'd like to submit once the user has selected one option.
HTML is
<form id="people-blockform" method="post" ...
0
votes
1answer
551 views
How to make optgroup label selectable in Rails form? Urgent
I have created the following select using the option_groups_from_collection_for_select form helper in Rails as part of a search feature.
All Categories
Garden Accessories
Gardens ...
-1
votes
1answer
1k views
PHP: Dynamic Drop down with optgroup
I am developing a drop down menu that uses HTML optgroups for group names that employees are a part of. Here is the MySQL query and output:
mysql> SELECT ...
-2
votes
0answers
47 views
how to make <optgroup> open and close onclick [closed]
I have an <optgroup> tag, and I want to be able to click on it to open it up, instead of having it automatically open.