Displaying 13 results from an estimated 13 matches for "debug_rjs".
Did you mean:
debug_ls
2007 Feb 14
5
FormTestHelper should change hidden fields
Railsoids:
FormTestHelper rules. It tests your response.body form at the same
time as it triggers your action, with all the parameters in that form.
This obviously improves quality.
But it took issue with this:
submit_form ''validate_stuff'' do |form|
form[''IBhidden''] = ''validate''
end
The field IBhidden is a hidden field. To be
2006 Jun 23
3
Ajax errors in safari
I am implementing some AJAX features into a web forum, and one feature
works fine in Firefox and in IE, but it is choking in Safari. Safari
will send the request fine and the data will be stored in the DB, but
it is not responding correctly to the RJS that is being sent back.
Anybody notice issues with Safari parsing the javascript sent back to
the browser?
--
Timothy Johnson
2009 Jun 10
1
[PATCH] remove rails2.3 deprecated config.action_view.cache_template_extensions
...t.rb
@@ -33,7 +33,6 @@ config.whiny_nils = true
# Show full error reports and disable caching
config.action_controller.consider_all_requests_local = true
config.action_controller.perform_caching = false
-config.action_view.cache_template_extensions = false
config.action_view.debug_rjs = true
# Don't care if the mailer can't send
--
1.6.0.6
2006 May 16
7
RJS head scratcher
I''ve been joyfully using RJS in a lot of our work lately, with no issues
whatsoever. However, I am porting an application to RJS templates that
we''ve had for a while, and having some issues.
When I use Firebug to see what is going on, the response comes back like
this:
try {
new Effect.Highlight("gi_error_row",{duration:20});
} catch (e) { alert(''RJS
2006 Apr 25
5
to ajax or not to ajax
before I started building my latest rails app, I made the decision to make
good use of ajax. My reasonsing was that users would benefit from the
quicker page updates - the application provides various different types of
insurance quotes, and has several multi-page forms and reports that can be
drilled down 5 or 6 levels deep in some cases - so it seemed like a good
candidate for ajax
Now
2007 Mar 24
6
Rails Development Log
Hi,
I am using Ruby+Rails with Mongrel.
Is there any way to disable logging so that everytime I start rails
(mongrel_rails start), it doesn''t automatically start logging info to
development.log
Thanks!
--
Posted via http://www.ruby-forum.com/.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on
2006 Jun 25
0
debug output does not show up in the browser window
...I only get the wsod in the
browser, and all the debug output in the log/development.log file. In my
config/environments/development.rb I have the following:
config.action_controller.consider_all_requests_local = true
config.action_controller.perform_caching = false
config.action_view.debug_rjs = true
config.action_controller.debug_routes = true
This is a simple app with not much in it yet. I am doing something
worng? Can someone please help me put the degub info in the browser?
Thanks,
steve
--
Posted via http://www.ruby-forum.com/.
2006 May 06
1
Ajax commenting - PLEASE HELP!!!!
I''m trying to post comments using Ajax. It seems that I have an
infinite loop somewhere, because it hangs on the return from the Ajax
call. The comment does get saved to the DB, but I have to refresh the
page for it to show.
The reason I know it''s some sort of infinite loop, is because I''m
showing a "loading.gif" image, and it never goes away. Plus, if
2012 Jun 27
0
config.cache_classes true or false in test environment?
...bpCm::Application.configure do
config.action_mailer.default_url_options = { :host => PATH_TO_USE }
config.action_mailer.delivery_method = :test
config.cache_classes = true
config.whiny_nils = true
config.consider_all_requests_local = true
config.action_view.debug_rjs = true
config.action_controller.perform_caching = false
config.log_level = :debug
config.action_mailer.raise_delivery_errors = false
config.active_support.deprecation = :log
config.action_dispatch.best_standards_support = :builtin
end
I looked in google about confi...
2006 Apr 14
18
RJS Templates & Safari?
Hello,
I tried Cody Fauser RJS tutorial
(http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates)
on my railsplayground dev site and got it to work when using Firefox,
but when I tried it on Safari, nothing happens.
Then I tried this tutorial -
http://rewrite.rickbradley.com/articles/2006/02/06/rjs-templates
Similarly, it works fine on Firefox... but with Safari the list is not
2006 Apr 03
6
problem upgrading to rails 1.1 on Unix
Hi,
I''m having problems installing rails on our Unix server.
"gem install rails --include-dependencies" only install rails 1.0.0
"gem update rails" updates to rails 1.0.0
I have installed rails on my windows box (i forgot how!).
Running "gem -list --local" on my windows box gives me:
rails (1.0.0.4008,....
Yet when i run :
gem -list --remote
there is
2009 Dec 05
7
ActionMailer dont function with JRuby?
I have application that i send email normal with native ruby.
But when i execute the sample application with jruby, it dont send email and
dont get error.
What can be wrong?
--
Atenciosamente,
Paulo Coutinho.
Blog: www.prsolucoes.com/blog
Site: www.prsolucoes.com
Msn: paulo-QE/7f1ia5mR0ubjbjo6WXg@public.gmane.org
--
You received this message because you are subscribed to the Google Groups
2006 Jun 24
6
Ajax fade effect
I have a list of categories, when I delete one of them, I want that item
to fade and then get removed. So I do the following:
1. home_controller:
def delete
@category = Category.find_by_name(params[:name])
@element_id = @category.name
Category.delete_all(["name = ?", @category.name])
end
2. delete.rjs:
if @element_id
page.visual_effect :fade, @element_id