The select-tag tag has no wiki summary.
0
votes
2answers
16 views
Rails Select Tag returns Hyphens
I have used a rails select tag to implement a multiple select feild in my application
<%= f.select(:tag, ['Phone', 'Email','Website','Address', 'Occupation'], {}, ...
0
votes
1answer
8 views
Submit calling function from Controller
I am trying to do this since yesterday. So, what I am trying to do is changing the value of the first row of table themes. I use dropdown and submit button to call the function in controller.
So far, ...
0
votes
1answer
39 views
How to call helper methode through select_tag
I am trying to call helper methode from select_tag. I did like this :
<%= select_tag(:themes, options_for_select({"Black" => "compiled/styles", "Green" => "compiled/styles2"})) %>
When ...
1
vote
1answer
16 views
Admin changes themes
I am making a web-app which admin can change the themes. So I have 2 css files, style.css and style2.css.
In my application_helper I have
def set_themes(themes)
@themes = themes
end
in ...
0
votes
2answers
77 views
Multi select html inserting multi values into database
I'm working on a category section for stories submitted to my website. I have a html select going on in my html and I have that submitting to the database using codeigniter functions. It is submitting ...
0
votes
1answer
24 views
JS Validation for Select multiple
Here is the issue with Select multiple and JS validation:
<select name="service_ids[]" id="service_ids" size="7" multiple="">
<option value="">-- Please Select --</option>
...
0
votes
1answer
44 views
Add a option group label to drop down
I am creating a drop down for users like -
= f.association :user, :collection => current_user.company.users.order('first_name'),
:include_blank => "Select a approver",
...
0
votes
3answers
50 views
How can I set 'selected' value for an option which has square brackets in it id name? [duplicate]
I want to read the value of the select tag which has [] in its id.
<select id="jobtype[]" class="dropDown" size="4" multiple="multiple" name="jobtype[]">
<option value="28">Activity ...
0
votes
1answer
9 views
options_from_collection_for_select how to use two variables as display values
I have a select tag like so:
= select_tag :cc, options_from_collection_for_select(@possible_contacts, "id", "email")
this lists each of @possible_contacts email addresses. each contact also has a ...
0
votes
0answers
33 views
remove field option in select tag
I'm using select_tag helper for creating a drop down to select user.
For this drop down i am using remove_field option of select_tag.
= f.association :user, :collection => ...
0
votes
2answers
41 views
Clearing the background of a <select> element's pulldown button with CSS
So I have a <select> element that I need to customize. Essentially I just want it to look like text, but when the user clicks on it, the pulldown choices appear. It would be preferred to show ...
0
votes
2answers
65 views
How to enable/disable select tag and post it (even if disabled) with knockout
I have a complex form with many selects whose state (enabled/disabled) depends on the value of some other controls, so it could happen that these selects are disabled when submitting the form (and the ...
0
votes
1answer
74 views
Changing number of row's and column's with 2 dropdowns in PHP
First of all I would like to say that I am very new to PHP so maybe it is a stupid question, but there we go:
I have a two dropdown select tags that have the following code in html and php:
...
0
votes
0answers
19 views
multiple select_tag with data from ajax action
I implemented a select_tag which populates a list from a first selection. Its based on the answer from sled:
Ruby on Rails - drop down box on change event
It works fine for a single selection. But I ...
0
votes
0answers
118 views
Capybara assert dropdown having a desired value selected not working
$ruby --version
ruby 1.9.3dev (2011-09-23 revision 33323) [i686-linux]
gem 'rails', '3.2.9'
group :test do
gem 'cucumber-rails', require: false
gem 'capybara', '~> 2.0.3'
gem 'rspec-rails'
...
0
votes
2answers
75 views
Rails select_tag alphabetical order
I have this select_tag
select_tag :id, options_for_select(Portal.all.collect{|p| [p.name, portal_datum_path(p.id)]}, [@portal.name, portal_datum_path(@portal)]), :onChange => ...
0
votes
1answer
48 views
select_tag rails, show only particular list
I have this model for company
class Company < ActiveRecord::Base
attr_accessible :description, :name, :type
belongs_to :type, :class_name => "CompanyType", :foreign_key => ...
0
votes
2answers
69 views
Single select <g:select> is producing more than one “selected” item by default
I have a <g:select> in one of my GSPs that looks like this:
<g:select id="location" name="criteria.location" from="${example.Location.list()}" optionKey="id" required="" value="1" ...
1
vote
2answers
113 views
Change class of element using javascript [duplicate]
I'm having difficulties to change class of element based on selected item in select tag. This is my code:
<table>
<tr>
<select onchange="wow(this.value)">
...
-1
votes
1answer
470 views
Struts 2 select tag - Using the tag (with the same list) multiple times on a page does not work
I need to be able to use the same drop down list multiple times on a page. The first time i use the 'list' on the select tag, it works fine. The same list does not populate the second select tag i use ...
0
votes
2answers
39 views
Rails Form_For Select With Dual Purpose
I have form for adding a new job. On my form I have a select drop-down list. I need to associate the new job to a customer. The following works great.
<%= f.collection_select :customer_id, ...
0
votes
1answer
283 views
Show the selected value of the dropdown after reload
I am working on this from a very long time. I want to show the elements of a collection in a drop down, and on click of a value I must reload the page and display its details. This I am able to do ...
0
votes
1answer
93 views
Onchange Event to Select tag in Rails
i have 4 model :
class.rb
has_many :studies
has_many :students
study.rb
belongs_to :class
has_many :grades
studen.rb
belongs_to :class, :counter_cache => :student_count
has_many :grades
...
0
votes
1answer
71 views
Change locale with a select_tag in a Rails 3 app
How could I change locale with a select_tag?
<%= form_tag ({:action => "set_locale"}) do %>
<%= select_tag "select_lang", options_from_collection_for_select(@languages, ...
1
vote
1answer
26 views
RoR, place value from select_tag in params hash
I am confused about the accepted way to update an association. Let's assume there are 2 models, Worker and Factory. When editing a Worker, the user is presented with a select_tag that contains a list ...
0
votes
1answer
96 views
Rails + Devise + Cancan select with dynamic, dependent
I am new to ROR,
I'm using Rails + Devise + Cancan. I added more fields to the User (generated by Devise).
I need to do a select dynamic (state, city). Any tips or alternative without being Jquery
0
votes
1answer
175 views
instead of change select tag javascript insert template's dynamic select
I am trying to create dynamic select, it started to work in some strange way. instead of new options for select tag, javascript inserts content of template's html
index.html.erb
<%= ...
2
votes
4answers
130 views
Form helper select tag in a dependence object with elements from another object
I´m newbie in Ruby on rails, and I´m trying to display a select with the ids from an object b) in an object a):
Object a) Function
Object b) Experience
function _form.html.erb
<div ...
0
votes
1answer
55 views
Accent insensitive <select>
Ok, I have an app where database is SQL Server and it's defined as Case insensitive and Accent insensitive.
This way, textual searches against database made by users are pretty clear and fast. This ...
1
vote
1answer
45 views
How to customize select_tag?
I want to set background-colors in my select_tag in Rails application
My current haml code
= select_tag :color_id, options_from_collection_for_select(@colors, "id", "name")
generated
<label ...
0
votes
2answers
226 views
Select Download File from One of Two Select Boxes with One Button - JavaScript
I have two select boxes like so:
<select id="one">
<option value="default">Select File</option>
<option value="path/to/file1">File One</option>
<option ...
0
votes
1answer
98 views
How to have a default select value that is NOT an option in drop down, using Ruby form select helper method
Ok so I am working on a project that was outsourced and now I get to jump in and fix everything before it gets pushed to production. I am currently trying to modify a line that creates a select form ...
0
votes
1answer
61 views
How to preselect dropdown given info from database to select_tag?
I have this line and after it is submitted as a form, C7000 or C3000 gets stored as a string. For the edit page, I cannot get the stored value to be the preloaded option on the dropdown instead of ...
0
votes
1answer
110 views
Collection_select form_for saying it's blank, when it's not
I have a Company Model and a User Model. A User belongs_to a Company a Company has many users. A company is created and then people can sign up individually and that will create the association. I'm ...
1
vote
1answer
502 views
Rails - drop down (select) month / year
How can I create in rails a drop down with all months in it?
How do I create a drop down with a list of years beginning from current year and 8 years forward (2012, 2013... 2020)?
Thanks.
0
votes
4answers
139 views
rails save select_tag value
I'am using select_tag and when I update selected value is not stored
when i update :name, :tag value get first option
edit.html.erb
<%= form_for(@name) do |f| %>
<div ...
1
vote
1answer
124 views
How to update a many to many relationship with select_tag
Say I have a many-to-many relationship defined as follows:
In my user model :
class User < ActiveRecord::Base
attr_accessible :userName (...)
has_and_belongs_to_many :groups
end
In my group ...
0
votes
3answers
1k views
how to output database data in a php select menu tag
I can't seem to figure out how to correctly display a select menu outputting mysql data from a database. I want to output blog titles so the user can upload pictures to that selected blog according to ...
0
votes
1answer
89 views
Text inside a select tag is vertically misaligned
I have a select tag and when there is a value in it it is vertically aligned to the bottom. I checked the CSS on it and it is the only thing is a font size and font. When I remove the doctype from the ...
1
vote
0answers
172 views
html select tag bug causes reflow during css transform animation. Ideas for workarounds?
Apparently including a select element as part of a css transform animation causes reflows to occur and negatively affects the animation's perceived smoothness and render time. Now in desktop browsers ...
1
vote
1answer
516 views
How to add class attribute to select tag in rails 3
I want to add class attribute to select tag in rails 3
my code is
<div >
<%= f.label :type %><br />
<%= f.select "type_id", options_from_collection_for_select(@type,
...
0
votes
1answer
102 views
jquery function working on jsfiddle but not on my site in cakephp
I have got stuck in a dump issue but am not able to work it out ,
I have a range selection of age through two select input buttons. I took the code from the mark up and it works on the fiddle but ...
0
votes
2answers
833 views
haml select_tag with constants
I'm new to Ruby and Haml, so I"m going around in circles on this. Googling isn't giving me any sample code I can use.
I can use the select_tag and populate the list from a table. But I can't figure ...
0
votes
0answers
219 views
Select Box Jquery Validation broken in IE
I've spent a lot of time with this issue over the last couple days and it looks like I need help.
What I'm trying to do is write some custom code that utilizes the Jquery Validation plugin. ...
0
votes
1answer
336 views
How to get an associated field value at selected index using combo box in javascript while fetching JSON response
Hello i am developing a phone-gap app and fetching the data from WCF service which returns me JSON response.
I need to show DesignName in the combo box and pass the associated designId…Any idea how to ...
0
votes
0answers
110 views
Rails: use select_tag to update column in rich join table
I have a model LineItem that is associated to the Delivery model with a has_many_though association. The join model is Shipment.
class LineItem < ActiveRecord::Base
has_many :shipments
...
0
votes
1answer
302 views
Rails Merge params with select
I was just looking at Ryan Bates railscast tutorial on Sortable Table Columns which with a few modifications becomes ajaxified in one of his later videos(Search, Sort, Paginate with AJAX). I think his ...
1
vote
1answer
483 views
Rails Drop Down Menu based on new Model
I've been trying to work through this for a few days and can't get anything to work. I have been building my first app based on Michael Hartl's amazing tutorial: http://ruby.railstutorial.org/. ...
0
votes
1answer
1k views
Jquery: Enable/Disable based on value of dropdown is not working for dynamically generated inputs
I have a form where I can add new rows to increase the form elements using jquery. In that form I have two dropdown options (Name:type and accounts) and two text inputs (Name:debit_amount and ...
-1
votes
1answer
175 views
Why is the dropdown box of SELECT tag shown at wrong place?
My CSS file doesn't touch the tag 'select' at all, also no CSS classes are related to the tag 'select'. But when showing in browser, the dropdown box which contains values are shown at the wrong ...


