Displaying 20 results from an estimated 1000 matches similar to: "Problem with string "merging" / escaping"
2006 Jan 27
2
Forms and one-to-one association
My models are:
class Event < ActiveRecord::Base
belongs_to :location
class Location < ActiveRecord::Base
has_one :event
The view:
...
<%= datetime_select ''event'', ''meet_at'', :start_year => 2006 %></p>
<%= collection_select(:event, :location, @locations, :id, :name) %>
..
The problem is that in the controller, when I
2006 Feb 19
2
Another "escaping" problem
Ruby 1.8.2, edge Rails (and 1.0), Mac OS X 10.4.3.
Here''s the SQL that gets generated for an eager load:
SELECT events.`id` AS t1_r0, events.`user_id` AS t1_r1, addresses.`id`
AS t0_r0, events.`name` AS t1_r2, addresses.`name` AS t0_r1,
events.`meet_at` AS t1_r3, addresses.`phone_number` AS t0_r2,
events.`created_at` AS t1_r4, addresses.`phone_service` AS t0_r3,
events.`location_id`
2006 May 23
11
New "made with Rails" site launched: www.invitika.com
We''ve finally finished up work on our application and are now beginning
our beta. The site (SMS+mobile blogging+event planning+LBS+photos) is
built using 100% Ruby on Rails. Many thanks to all the people who
answered questions over the months on this list. Our experience with
Rails was overwhelmingly positive!
We''d love to hear any feedback you might have:
2006 Sep 15
1
In datetime_select, :order does not work, but it works for date_select Why
Hi All
In my project I am to take date of birth from user so I used
datetime_select. It renders three selection boxes, year, month and day. But
I want order as day, month and year. I added :order option for
datetime_select, it renders normal selection boxes with order year, month
and day. Why :order does not work with datetime_select? see my following
code
<%= datetime_select(:user2,
2007 May 12
4
help, 1 error(s) on assignment of multiparameter attributes
Hi everyone!
I just started learning Ruby on Rails about a week ago for a school
project, and can''t seem to find a solution for something.
I have this inside the form inside of edit_albums.rhtml:
<%= start_form_tag :action=>''proccess_edit_album'', :id=>@album.id %>
....
Release Date: <%= datetime_select(:album, :release_date, :start_year
=> 1960)
2006 Mar 01
0
Possible bug in ActionMailer (with patch)
I wanted to write the following code, with emphasis on adding my own
headers to the second part with the :headers parameter.
class ArticleMailer < ActionMailer::Base
def test_message
subject ''This is a test''
recipients ''elan@bluemandrill.com''
from ''Exemplary Products <info@example.com>''
2006 Apr 19
1
AJAX - update item forms problem
I have a table showing some records from the database. These records
should be always ordered by some datetime field. The list of items is
changed by AJAX using RJS scripts and edits are done by showing and
hiding an update form under a chosen row. Adding and updating rows works
great but my problem is when the order of items is changed after making
some AJAX datetime updates update forms of
2006 Apr 20
4
Small Date Formatting Question regarding datetime_select()
Is there a way to make datetime_select() dropdowns work on a 12hr
clock? I need to make a input field that works exactly like the
reminders datetime selecton dropdowns in Backpack to populate a
datetime field in my DB. i.e in the format: month, day, year ? hour
(1-12) minute am/pm. Should I change my database to have a separate
column for date and one for time and use date_select()?
Can
2008 Jun 09
3
Rails 2.1 and ddatetime_select
I''ve updated to 2.1 and am continuing to have issues with
datetime_select helpers which worked fine previously.
Example:
<% form_remote_tag(:url => { :controller => ''notes'',
:action
=> :add_booking_note_ajax,
:id => @booking},
2006 Jan 04
0
[Wiki] Down - SaltedHashLoginGenerator
Does anyone know where to go to download/read docs for SaltedHashLoginGenerator.
The URL: http://wiki.rubyonrails.org/rails/pages/SaltedHashLoginGenerator
generates the following:
Application error (Rails)
Thanks,
Dave
--
~~~~~~~~~~~~~~~~~~~
D''Andrew "Dave" Thompson
http://dathompson.blogspot.com
2006 Feb 05
0
How can i specify default time to datetime_select tag
I want to specify a different default time to datetime_select tag how
can i do that.
also i was looking at rails helper code
-----------------------------------------------------------------------
module ActionView
module Helpers
module DateHelper
def to_datetime_select_tag(options = {})
defaults = { :discard_type => true }
options = defaults.merge(options)
2006 Feb 22
1
specifying m/d/y order in datetime_select
the date_select form helper has a neat little feature which lets you specify
the order of the month/day/year that is displayed on the form via the :order
parameter. i.e.
<%= date_select ''blah'', ''somedate'', :order=>[ :month, :day, :year ] %>
however, i don''t see a similar option for datetime_select. passing
an :order parameter is happily
2006 Nov 04
2
date_select parameter
Trying to add start year to date_select
<%= date_select(:start_year => 1980)%>
It''s throwing an exception "wrong number of arguments (1 for 0)
Can''t I add a start_year, API shows this option ?
TIA
Stuart
http://en.wikipedia.org/wiki/Dark_ambient
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the
2008 Jan 25
1
form error with datetime select
Hi, Im trying to build a form using:
<% facebook_form_for(:task, at task,:url => create_task_path) do |f| %>
Assign Task To: <%= fb_friend_selector %>
<%=f.text_field :ttype, :label=> "Title"%>
<%=f.datetime_select :duedate, :label=> "Due Date"%>
<%=f.buttons "Add" %>
<% end %>
But im getting an
2006 Nov 04
0
observe_field and datetime_select
Hello all,
I have a form with a datetime_select.
I need to use the actual time selected in an action triggered by
observe_field.
Could make it work with other select fields, but not with datetime_select.
Seems that observe_field can locate the element just by the id (not by the
name).
If so, how can I set the ID of datetime_select ???
I''m in this for some hours, but could not find a
2006 Mar 01
0
datetime_select & styles
Hello,
apologies if this has a trivial solution but after rumaging around
google for a while I haven''t found one. I am trying to set the style of
the datetime_select compound widget but it appears to ignore all my
efforts ... the API specifies
datetime_select(object, method, options = {})
so you would expect
<%= datetime_select ''log'',
2006 Aug 17
2
SaltedHashLoginGenerator no such file to load -- iconv
Hi,
I''m trying to use the SaltedHashLoginGenerator as documented on
http://wiki.rubyonrails.com/rails/pages/SaltedHashLoginGenerator
Ruby version: ruby 1.8.4 (2005-12-24) [i386-openbsd3.9]
I''ve the following commands:
gem install salted_login_generator
gem install localization_generator
rails myapp
cd myapp
ruby script/generate salted_login User Localization
All ran
2006 Feb 07
1
Using select with saltedhashlogingenerator
hi, i just got started with rails and am trying to work with the (deep
breath) saltedhashlogingenerator gem in my app.
more specifically, i am trying to generate a select box in my _edit
partial, via:
<%= form_input select(:id, :name, @customers) %>
(i used Customer instead of User when installing the gem into my rails
app) this would appear to be the correct syntax, based on the
2005 Dec 19
0
Wiki link down that points to SaltedHashLoginGenerator
http://wiki.rubyonrails.com/rails/pages/SaltedHashLoginGenerator
gives Application Error
2006 Aug 07
1
datetime_select problems
Hi,
I have a datetime select in my form like this:
DATE/TIME REPORTED: <%= datetime_select ''report'', ''rep_date'' %>
This works beautifully for creating a new record. The data is saved as:
2006-08-07 11:33:00
Now, the problem is when I try to load the form with saved values
to do an update.
The above code works and loads the saved data in another one