Tagged Questions
The select-tag tag has no wiki summary.
2
votes
1answer
44 views
Change a variable or activate a JS-linked <select> dropdown with Greasemonkey
I'm looking to change a javascript variable on page load with Greasemonkey.
The variable I'm looking to change is iDisplayLength the default value is 25, I want to change it to -1 on page load.
This ...
2
votes
1answer
1k views
Rails 3 - select_tag helper - array
I have a question I'm a little embarrassed to ask, but can't seem to figure out.
I'm writing a form to allow users to filter information for them to see only what they want. In the form I'm using the ...
2
votes
4answers
947 views
How to display an particlar attribut in a selectbox in a ROO-generated application
I am currently getting myself into Spring-Roo and Spring-MVC. I have a fairly simple application that Roo generated for me. It consists of two entities, Record and Car, where Record has a reference to ...
2
votes
1answer
169 views
Rails equivalent to Django's “choices”
I know there is no real equivalent in Rails but my question is mostly about best practice...
In Django, if you want to limit a model field to a limited set of choices, you would do something like ...
2
votes
2answers
661 views
Setting option value as array index in a select with rails
I want to create a select tag using rails collection_select or options_for_select with the items of an array which are not model based. The value of the option should be the array index of each item.
...
2
votes
3answers
3k views
select_tag is sorting (strangely) [Rails]
I have a select box that looks like this (within a form_for)
<%=f.select(:whatever_id, {"blah"=>0, "blah2"=>1, "blah3"=>2, "blah4"=>3}, {:include_blank => true}) %>
and the ...
1
vote
0answers
35 views
How to preselect a country with the `country_select` helper?
How is it possible to preselect a country in the dropdown list generated by the country_select or localized_country_select helpers? The following code nicely creates a list of countries, but the ...
1
vote
1answer
37 views
1
vote
1answer
414 views
Rails 3.1 interdependent select dropdown lists
My database structure:
Countries(id,title,prefix)
Towns(id,country_id,title)
Street(id,town_id,title)
I need to create interdependent select dropdown list: when i select Country, ajax loading ...
1
vote
2answers
262 views
How do you include blank for first item in select list in options_for_select tag in Rails 3?
I tried :include_blank => true, but it didn't work.
<select>
<%= options_for_select Model.all.collect{|mt| [mt.name, mt.id]} %>
</select>
If I need to add it to the collection, ...
1
vote
1answer
171 views
Getting the value from a Select tag (Grails)
I'm having a problem getting the select tag to work for me in Grails. Basically, I am trying to get a value from the select field and use it to sort a list being displayed on the gsp. The select tag ...
1
vote
1answer
78 views
Saving data from select_tag
Trying to save data from a form to the database.
Using the select_tag
<%= select_tag :size, options_from_collection_for_select(@plan, 'name', 'size') %>
Everything is fine, it grabs both size ...
1
vote
1answer
168 views
Select_tag submitted needs to redirect to show page with :id?
Hi
I have asked a question similar to this before but never got it resolved. So I am trying again.
This seems like it should be so simple. I am not using Rails 3 yet BTW.
All I want to do is have a ...
0
votes
0answers
12 views
How to identify which option is selected by the user using select_tag rails 3.1
This is what I want to do.
I have got a list of countries in a helper method called :-
def asia_list
[
["Afghanistan"],
["Armenia" ],
["Azerbaijan"],
["Bahrain"],
.
.
.
]
end
Similarly I ...
0
votes
1answer
30 views
select within loop in Rails 3, taking only first option
Guys I have a form like this
<%= form_tag({:action => 'update_survey_list_status') do%>
<table id="survey_form">
<tr>
<th>Beneficiary Details</th>
...
0
votes
2answers
25 views
Can't seem to pass variable using select_tag
I have a form in Rails that I need to create an option tag in HTML. It's a pretty simple option list with static values. I could create it in HTML easy enough, but I want to do it the "Rails Way"
...
0
votes
1answer
54 views
How to send data to controller with remote select in Rail 3?
I want to do is load the price of a service. These services are listed in a select tag.
<%= f.collection_select(
:service_id,
Service.all,
:id,
:name,
:prompt => 'Select a service') %>
...
0
votes
1answer
35 views
Select_tag error : Error messages: Category can't be blank
I want to input selections and input it into micropost table. The selections is from categories table. It encounter problem of category column of micropost is blank so I suspect it cannot input data ...
0
votes
0answers
45 views
jQuery Tools Scrollable with navi using <select> tag
I'm having problems getting a scrollable div to accept a <select> tag as a navigator. I've found one person that says he accomplished it, but only put up his broken code.
The scrollable works ...
0
votes
1answer
86 views
how to Show/Hide text field based on drop down selection in rails3
What is the best way to Show/Hide text field based on drop down selection in rails3?
here is the code
<label>Album </label>
<%= select_tag "album", ...
0
votes
2answers
90 views
Rails select_tag problem in show and index actions
I have a select_tag to pick items from a list here's the code:
<%= select_tag "Drinks", options_for_select([ "Water", "Soda", "Beer" ], "Water") %>
After submiting "water" for exemple, it ...
0
votes
1answer
82 views
Rails multiple select box for different models
I have a class User, which has many Events and belongs to many Groups. I want to allow user to create Event and restrict who he wants the invite by Group, by user id or by both.
How should I allow ...
0
votes
1answer
109 views
How to create dropdown menu for the following code in Rails 3?
Consider an HTML list of links:
<a href="/d_population/1">User 1 name link</a><br>
<a href="/d_population/2">User 2 name link</a><br>
This code generates ...
0
votes
0answers
80 views
How to sort with select_tag
I am trying to sort some results. I have the function working with plain link_to links, but it would be much more elegant if they were in a select drop-down list.
These are my links which work:
...
0
votes
1answer
107 views
how to send select_tag value in form parameter in rails 3
<%= form_tag url_for(new_manage_listing_media_path(3)),:method => 'get' do -%>
<%= label_tag ':name', "Choose media:" %>
<%= select_tag "id", ...
0
votes
1answer
231 views
Struts 2 select tag sorting values problem
I'm using struts select tag in my forms.I use a Hash map to populate it. When I load the page a method in the action class will call another class which uses hibernate to fetch data and returns a Map. ...
0
votes
1answer
139 views
Rails select helper - set default?
Rails 2.3.11
I did read this answer, but it's not working for me.
I would like the default option for this selection box to be the event_id passed through the URL.
f.select :event_id, @events, ...
0
votes
2answers
124 views
output of the rails select_tag
i'm new to rails and am having difficulty figuring out how to use the output of a select form in rails 3. the following is my select tag:
<%= form_for(:order, :url => {:action => ...
0
votes
1answer
122 views
how to get browser URL to show values of a collection_select category - RoR
Hi I am using the collection_select function when doing an advanced search on my site.
I want the browser url to show the names of the categories that are options.
So I doing:
<%= ...
0
votes
1answer
68 views
select tag not honoring name field - RoR
Do you have any idea why the name (="language") here is not being honored? I expect it to be in the search query.. but instead it spits out something ugly like "company%5Blanguage%=".
<%=select( ...
0
votes
0answers
263 views
Rails 3 - select_tag helper - array - A .all option?
I have select_tag that is populated by an array of users. With this tag, I change what information is displayed in a table, basically only showing that user's work.
<%= form_tag orders_path, ...
0
votes
1answer
233 views
awesome_nested_set :selected not working rails
I have tried this all the ways I can think of, but none of them seem to be working:
f.select :destination_group_id, options_for_select(nested_set_options(DestinationGroup) {|i| "#{'-' * i.level} ...
0
votes
2answers
227 views
Rails: Returning a blank select option with observe_field?
I have an observe_field call in my app like this:
= observe_field "marketSelect", :update => "merchantSelect", :with => "id", :url => { :controller => "markets", :action => ...
0
votes
4answers
554 views
How to disable select tag options through jQuery? Need help
I have a query regarding Select tags option. plz any one solve through jQuery.
Suppose i have two select tags, in the first select tags i have options of Languages and script and in the second tag of ...
0
votes
1answer
173 views
multiple records using the select_tag
Update: To clear up confusion: by multiple records I mean multiple individuals at once. Each voter would have their own select__tag, this is the reason I want to pass the ID as a hash.
I'm attempting ...
0
votes
3answers
225 views
Reading multiple instances of a tag or element using XSLT
My RDF xml file is something like this..
<rdf:RDF>
<rdf:Description rdf:about="........">
<j.0:property rdf:resource="....."/>
<j.0:property ...
0
votes
2answers
884 views
HTML - Put SELECT tag content into INPUT type = “text”
I have a form in a webpage where I would like to put the selected item in a drop down list into a testbox. The code I have till now is the following:
<form action = "">
...
0
votes
1answer
631 views
OnChange problem with select_tag with '/' and '.' characters in Rails
I have an select_tag (rails) that loaded a select value with '/' and '.' character in it.
The select tag's onchange redirects the page (using window.location) using concatenated url with the value of ...
-1
votes
1answer
28 views
changing columns in select tag with fixed size
how to create select list box in html with specific columns number?
<select name="test" size="2">
<option value="test1">test1</option>
<option ...