Displaying 20 results from an estimated 600 matches similar to: "UJS and make_observed"
2008 May 30
0
UJS for rails plugin Installation problems
Hello,
I downloaded and installed the latest UJS plugin.
I first got the error "uninitialized constant UJS" and this error wouldn''t
go away no matter where I place the "UJS::routes" line in the routes.rb
file. The only way I found to get rid of this error is to run "rake
tmp:sessions:clear" but then I get another error which is "can''t convert
2006 Oct 04
0
UJS Plugin - apply_behaviour Question
Anyone using the Unobtrusive Javascript for Ruby On Rails Plugin?
I have some code that looks like this.
<% apply_behaviour ''select:click'' do |page, element, event|
page.insert_html :top, ''the_list'', "<li>hi</li>"
end %>
What I would like to do is list the element.value rather than the string
"hi" but I''m a
2007 Feb 24
1
Bug in TMail ?
I''m sending mails to a rails app, and I''m having a weird issue
fetching the email.from header.
I will paste the whole email and show what email.from returns.
#######
Received mail:
Return-Path: <nicholas.wieland-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
Delivered-To: unknown
Received: from mail.tochunky.org (75.126.89.28) by
adreadedsunnyday.local
with POP3; 24 Feb
2006 Jun 13
1
Routes question
Hi *,
I have something like
map.connect ''people/:username'', :controller => ''account'', :action =>
''index''
in my routes.rb and obviously if the user isn''t logged it defaults to
the login screen.
I''d like to be able to fetch the :username and display it in the
opposite input field inside my login page, but I
2006 Aug 17
4
Unit Tests and lib/
Hi *, I have a few modules in lib/ and I use them mostly in my models.
I''d like to add a few unit tests and run them with rake with all
other tests of my app: where do I have to write them ?
TIA,
ngw
--
Nicholas Wieland
nicholas_wieland@yahoo.it
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2007 Aug 22
1
Interface for administration
Hi *, I need to choose a platform for building the administrative
part of http://www.zooppa.com
Actually I like both streamlined and activescaffold, they seem both
good.
I''d like to ask to people using it which one is more likely to manage
correctly things like validations, polymorphic associations, STI and
in general complex data.
If it''s also easy to modify it would
2006 Jul 21
3
ActionMailer doesn''t send any mail
I''ve configured actionmailer following the documentation, adding to
environment.rb everything for using my mail account on yahoo using
deliver_* methods to send a mail.
I can see the mail in development.log and everything seems fine, but
no mails so far.
Is there a place where can I see what the server answered, or
something to look at to solve the problem ? I have no clue,
2006 Apr 13
1
Model is not a class
I''m trying to specify a model in a controller, but rails gives me
"Account is not a class", where Account is my model name ...
This is my model:
class Account < ActiveRecord::Base
validates_presence_of :email, :email_confirmation,
:username, :password, :password_confirmation
validates_format_of :email,
:with =>
2006 Jul 26
1
how do I change color to an highlight effect ?
This is my code:
<%= form_remote_tag :url => { :action => "forgot_account" }, :update
=> "result",
:complete => visual_effect(:highlight, "result", :duration =>
2, :startcolor => "#c8e673", :endcolor => "#9db55d") %>
If I remove colors to the effect everything works, but with this code
it renders on another
2008 Jun 09
10
Testing file attachment with Paperclip
Does someone have an example on faking a file upload for just ensuring
it gets called, without actually uploading the file to s3.
I thought that stubbing Model.has_attached_file would be enough, but
it doesn''t seem so ...
This is what I did:
Video.stub!( :has_attached_file ).with( :name ).and_return( true )
has_attached_file is from paperclip, it gets mixed to the model.
1)
2006 Aug 15
1
Interval datatype in migrations
How can I use an interval datatype inside migrations ? execute ?
TIA,
ngw
--
Nicholas Wieland
nicholas_wieland@yahoo.it
-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://wrath.rubyonrails.org/pipermail/rails/attachments/20060815/1c262694/attachment.html
2006 Mar 08
3
ActiveRecord and Images
Not really a Rails question, but a "best practices" one.
If I want to associate an image to every account in my application,
is it better to insert the image file directly inside the db or to
upload the image in public/images/ ?
Also, if I want to associate a cover to a movie, what''s the best
approach ?
TIA,
ngw
--
Nicholas Wieland
nicholas_wieland@yahoo.it
2006 Jul 31
5
ActionWebService API
Hi *,
I need to pass a hash to a webservice, so I defined my API with:
api_method :search,
:expects => [{
:tags => :string,
:assignment => :string,
:resource => :string,
:lesson_plan => :string,
:subject => :string,
:all_types => :string
}], :returns => [[Resource]]
when I try to test the webservice with scaffold the
2006 Nov 04
0
Using <=> in models
Hi *,
I''m going mad because I''m not able to implement a custom sort on an
array of models.
The order must be by type, where type are custom strings, so Subject
> LessonPlan > Assignment > Resource and if the type is the same by
date using a datetime field (created_at).
def <=>(other)
if self["type"] == "Subject"
return +1
2006 Jun 11
0
Account location plugin
Hi *,
I''d like to know from users of the Account location plugin if it
works with webrick without adding all the subdomains to /etc/hosts.
I''m on OS X.
I would also be glad to hear experiences using this plugin.
ngw
--
Nicholas Wieland
nicholas_wieland@yahoo.it
Chiacchiera con i tuoi amici in tempo reale!
2006 Apr 24
0
design question for a web service client
I have a module that queries a web service and returns an xml
document (sometimes more than one).
I''ve put the module under lib, and created a model to use the
resulting xml documents.
Obviously the document needs to be parsed with rexml, and return a
ruby data structure to the controller that can be used in various
ways in my views.
Would you implement all the specialized parsing
2006 Dec 08
2
UJS plugin incompatible with RSpec?
Hi all,
Anyone using UJS with RSpec? I have the following view spec:
---- edit_spec.rb
context "accounts/edit" do
fixtures :users
setup do
assigns[:user] = users(:consumer)
end
specify "should display the user info to edit" do
render ''/accounts/edit''
end
end
---- end
that causes this exception:
---- exception
ActionView::TemplateError
2011 Sep 19
1
Rails and UJS guide - not having much luck
I refered to http://railsdog.com/blog/2011/02/28/callbacks-in-jquery-ujs-in-rails3/
in hope of getting json data from my controller and displaying it in
my view when an ajax request is made.
I followed the instructions on the http://railsdog.com/blog/2011/02/28/callbacks-in-jquery-ujs-in-rails3/
and even corresponded with the author and also implemented his ''fix''
in
2007 Jan 06
3
speeding up pagination
I need help to optimize a query (sort of ...)
if params[:debit] == "on"
@schools = School.find(:all,
:conditions => ["name like ?", "%#{params[:search]}%"],
:order => ''name'')
@schools.delete_if { |s| s.debit <= 0 }
@school_pages = Paginator.new self, @schools.length, 20
The problem here is that
2010 May 12
1
Rails 3: perform controller action upon selecting menu item (UJS?)
In Rails 3, I have a form that has a menu on it. I would like to
render an area containing text fields within the form differently
depending on what''s selected in the menu.
Prior to Rails 3, one way it appears I could do this is by using
observe_field on the menu and call an action in my controller that
renders the appropriate partial which could then be swapped into a div
in my form.