Displaying 20 results from an estimated 200 matches similar to: "noob simple question create custom options_for_select"
2007 Aug 28
1
Renouveau and Nouveau driver for Nvidia Riva 128 ZX (NV3) ?
Hello,
I have a Nvidia Riva 128 ZX graphic card.
But renouveau need the nvidia proprietary driver to work
and there is no nvidia proprietary driver for Riva 128 or Riva 128 ZX.
How can I send you informations that can help you to write
a free and open source driver for this nvidia graphic chip.
At http://users.tkk.fi/~jpakkane/ren/,
I found nothing for NV3.
But there is some information for NV1
2008 Oct 18
2
Re: TextMate Bundle using Gedit
For what I know you can''t use the TM bundles...
But like mgutz pointed there''s a lot of plugins. There is some
alternatives to achieve something like TM bundles. Look at this links:
- GMate - http://github.com/lexrupy/gmate/ (http://
alexandredasilva.wordpress.com/gmate/)
- gedit-rails - http://github.com/mig/gedit-rails/
Think that GMate is the most complete. I use these as
2008 Jul 20
1
selected attribute in options_for_select
Hello Everyone
I have a select_tag which I populate using a map, I use
options_for_select method to pass the map and "selected" value. For some
reason I can not get the option "selected" based on the value I pass to
the selected attribute. Here is the code
<%= select_tag :current_course,
options_for_select( Course.find(:all).map {|p| [p.title,p.id]},
@selected )
2006 Jan 23
2
problem with options_for_select
Hi All,
I am having a little difficulty using the options_for_select forms
helper method. I have a form for an active record object book, which
belongs to a publisher. Using the options_for_select is working fine
as far as creating the various options, but it will not output the
"selected=''selected''" bit of html needed to identify which publisher
is
2006 Jul 04
1
options_for_select - default nil value
I have a field in a view, like so:
<%= select_tag(''quoted_condition'',
options_for_select([''NEW'',''RETAIL'',''OEM'',''REFURB''], ''NEW'')) %>
This sets the ''selected'' value to ''NEW'' - however, I would like to have
a nil value here, so I can
2008 Jan 03
1
Help using options_for_select in select_tag
<b>Client</b><br />
<%= select_tag ''clients[]'',
options_for_select(
[['' '',''1''], [''aaaa'',''2''],
2007 May 24
1
How do I show the selected values in options_for_select? Not as simple as it sounds.
How do I show the selected values in options_for_select? I have a
Service model and a AccessControl model. When a user edits a Service I
want the services access_controls to be pre-selected.
Models:
Service has_many AccessControls
AccessControl belongs_to Service
application.rb:
$types = Array["Athens", "htpasswd", "IP", "None", "Other",
2006 Jan 14
2
I think options_for_select is backwards
With a hash such as:
stuff = {''1''=>''desc 1'', ''2''=>''desc 2'', ''3''=>''desc 3''}
options_for_select(stuff) will output:
<option id="desc 1">1</option>
<option id="desc 2">2</option>
<option id="desc 3">3</option>
2007 May 21
0
options_for_select and setting css class values
Hi,
i''m not sure if this is possible using erb (at the very least, I can''t
figure it out by googling or via searching this board), so here
goes...
i''m using erb to make a select box with several hundred <option>
values
it looks something like this:
<%= select_tag ''controls'', options_for_select(@controls.map {|cpd|
2008 Jan 22
1
getting multiple select to work: options_for_select
Hi,
<%= select_tag ''image_id'', options_for_select(Image.find(:all) {|
an_image| [ an_image.name, an_image.id ] }), :multiple => true %></p>
* I am in a view, and I am trying to search the image table and make a
multiple select box with each image''s name.
* Right now it is working, but I see this:
---------------------------------------------
2007 May 10
0
options_for_select helper is also mess....
I am ''trying'' to use ''options_for_select''
<select name="selected_distance" id="selected_distance"
style="width:8%;">
<%= options_for_select(["2", "5", "10", "15", "25" ], @selected_distance
) %>
</select>
which generates the html....
<select
2010 Jun 17
1
Problem with options_for_select
Hi,
I have a problem with the form select. In the value field I have the
generated html...
<%= f.select :brand_id,
options_for_select([[''Brands'', 0]] +
@search_brands.map { |b| [b.name, b.id]}),
{:id => ''cbxBrand'', :tabindex => (@tabindex += 1)} %>
This is the html:
<select name="search[brand_id]"
2015 Jul 14
0
Questions about hardlinks, alternate storage and compression
-----BEGIN PGP SIGNED MESSAGE-----
Hash: SHA1
On Tue, 14 Jul 2015, Gionatan Danti wrote:
> On 14/07/15 08:17, Steffen Kaiser wrote:
>> On Mon, 13 Jul 2015, Gionatan Danti wrote:
>>
>>> On the other hand, private (per-user) sieve file works without
>>> interfering with hardlinks. In a similar manner, disabling sieve also
>>> permits dovecot to create
2006 Jun 26
0
options_for_select-how to store cookie selected value ques.
#Controller
cookies[:state] = state
if state != nil and state.to_i != -1
conditions << ''stateid = ?''
cond_args << state
cookies[:state] = state
end
if !cookies[:state].blank?
@default_state = cookies[:state]
else
@default_state = ""
end
# view - html
2006 Mar 08
1
question about options_for_select array
Hi!
If i have something like this used to create select tag:
options = [["Dollar", "$"], ["Kroner", "DKK"]]
and later read value from the database and get "DKK", what is the
easiest way to get "Kroner" value?
--
Posted via http://www.ruby-forum.com/.
2010 Mar 24
0
Select_tag with options_for_select not populating DB.
I''m trying to get my animal app to let users populate info about each
animal. The code below partially works. It shows the drop down menu,
and it shows the names of what I wanted it to be the names of the
Databases. I don''t know how to make it work so it shows the name dog
and than you hit submit and it appears in the dog view. When I hit
submit it just makes a new view under the
2005 Dec 29
2
options_for_select order
I''m trying to create a Select box
using the following code:
<%= select ''project'', ''status'', { "Active" => "Active", "MD"
=> "MD", "HOLD" => "HOLD", "Dead" => "Dead" } %>
You''d think the select box would keep them in
2007 May 11
5
options_for_select - how to set the selected value?
Ok, this should be simple but I am finding it''s not and previous
postings don''t seem to shed too much light on this.
I have a select_tag with 4 values pulled in via a helper:
def filter_hours
filter_hours = [
["1 hour", 1],
["24 hours", 24],
["7 days", 168],
["14 days", 336],
]
end
The select_tag looks
2005 Aug 08
0
Compiling kernel/drivers for hw RocketRaid 1640
I picked up a RocketRaid 1640 card b/c it had support for "RedHat".
Apparently, their version of "RedHat" is "stable"(9), which I pointed
out was "dead" for all security purposes... (at least, that was what I
understood from someone in one of the RH/clone IRC channels.)
It turns out that I need to build a new driver from their open source
code. This
2007 May 24
3
Help with Create and Update with options_for_select in a select_tag
I have a select_tag in my view that uses options_for_select with
multiple = true. I am having trouble figuring out the Rails way to
create and update that field. Please help.
Models:
-------------
Service has_many AccessControl
AccessControl belongs_to Service
application.rb
-------------------------
$types = Array["Athens", "htpasswd", "IP", "None",