Displaying 20 results from an estimated 50000 matches similar to: "RJS templates and Opera"
2006 Jul 29
0
RJS templates, Safari 1.3
Hello,
I''m having a problem getting RJS templates working with Safari 1.3
(latest version available to OS X 10.3 and earlier). I''m using Rails
1.1.4, running on either linux or OS X.. same results.
My RJS pages work fine using Safari 2.0, IE and Firefox.. just not
Safari 1.3.
The twist is that the following RJS sites work fine in Safari 1.3:
http://depot.iamjp.com/demo
2006 May 08
1
replace_html on a select fails on IE and Opera
I am using an rjs file to do a page.replace_html on a select field as
follows:
@inrhtml = options_from_collection_for_select( @widgets, "id", "name")
page.replace_html "type_select", @inrhtml
I have it working on firefox and safari but it doesn''t work on IE and
opera?
My javascript defaults are up-to-date.
I would appreciate any help.
thx,
-hkn
--
2006 Aug 02
9
RJS not cross browser compatible?
I have an RJS template that does the following
page.insert_html :bottom, "some_id", ''<tr id="some_id"><td></td></tr>''
This works just find in safari and firefox. In IE and Opera it doesn''t
work so great. Any ideas? Am I doing something wrong here?
--
Posted via http://www.ruby-forum.com/.
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
2005 Dec 31
9
RJS Templates not conducting callbacks
I''ve run across a weird problem with RJS that I''m trying to figure out:
I have an application that was running 0.13.1 that I recently upgraded
to Rails 1.0. I wanted to use RJS templates, so I installed the plugin
and updated my prototype javascript file via ''rake update_prototype.''
I attempted to test the templates out via the following code, but the
AJAX
2006 May 04
1
Ajas Scaffolding and RJS Templates the same thing?
Hey all,
I''m just starting in rails and am working on my first app. I need to do
inline editing for 2-15 rows of data on a page. I found Ajax
Scaffolding here:
http://www.ajaxscaffold.com/
And it is EXACTLY what I want in my app. But I''ve also been trying to
read a bit up on RJS Templates. Are they basically the same things
except RJS is built into rails or is the
2005 Dec 15
0
RJS Templates and the Replace semantics
I have an issue with the way replace_html works in an RJS template.
This is a copy of a post on my blog (http://blog.craz8.com
<http://blog.craz8.com/> ) that describes the problem and my working
solution to the problem.
If I have a collection of things that are output like this:
<div id="things">
<% @things.each do |thing| %>
<%= render :partial =>
2006 Mar 31
3
RJS templates outputting bloated code?
I''m an RJS newbie. I just did the tutorial at
http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates, and
then used wget to look at the output the RJS template generates. This is
what I got:
try {
new Insertion.Bottom("list", "<li>Fox</li>");
new Effect.Highlight("list",{duration:1});
Element.update("header", "RJS
2005 Dec 19
1
Question about rjs templates
Hi everyone
I read some support about rjs templates at
http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates
but when i download the rails1.0, i could not find the code in
http://dev.rubyonrails.org/changeset/3078 ,and i also could not find the
file actionpack/test/fixtures/test/delete_with_js.rjs
is something wrong with me.thanks for your answers.
--
Posted via
2007 Apr 10
0
Change in default xml, rjs respond_to templates that Rails looks for on edge Rails
Not sure if this is the right avenue to discuss this but I couldn''t
find anywhere to ask this question on Rails Trac.
Regarding this latest changeset:
http://dev.rubyonrails.org/changeset/6507 (Change default respond_to
templates for xml and rjs formats.)
Does anyone know the rationale behind it? I can imagine there would be
an announcement in the future about this backward
2006 Jun 17
2
RJS templates - newbie
I am trying to test drive RJS templates in Rails 1.2. Here is what I
did:
create table categories (name varchar(255) );
rails RJSTest
cd RJSTest
rake update_javascripts
script/generate controller home index add
script/generate model category
Note: When I did a rake update_javascripts, I did not see any output.
I configured database.yml to talk to mysql.
Next I wrote
2006 Feb 08
3
Using shared RJS templates
I''ve got an action in my application controller that needs to call a
shared RJS template. Typically it''s actually being called by subclasses
of the application controller.
I''ve tried this..
def action
...code..
render :partial => "shared/template"
end
with ''_template.rjs'' existing in the shared folder.
The problem that crops
2006 Jan 29
2
GetText and rjs templates?
hi,
is it possible that gettext don''t work with rjs templates?
i''ve just tried this simple example
blog_controller.rb :
class BlogController < ApplicationController
def index
end
def dosomething
end
end
index.rhtml :
<html>
<head>
<%= javascript_include_tag :defaults %>
</head>
<body>
<div id="test">Some text to change
2006 Jun 26
3
RJS Templates with dynamic id names
Due to the use of partials, I''m trying to dynamically generate the ids
being affected in an rjs template, but I can''t seem to get the syntax to
work. Basically, I need to do the equivalent of this from the .rhtml
template:
page.show ''mything<%= @thing.id %>''
No joy there. Apparently RJS templates don''t work with embedded ruby. So
I tried:
2005 Dec 15
2
Rails 1.0 & RJS Templates
Hello all,
I just successfully updated my dev env to Rails 1.0. I then wanted to
get .rjs templates working and followed Cody''s instructions at
http://www.codyfauser.com/articles/2005/12/02/rails-rjs-templates-plugin
. However, when I try to run ''rake test'' I get the following error:
(in
2006 Feb 18
2
Effect queues with RJS templates and scriptaculous
Hi. I was wondering if it''s possible to combine effects for
individual elements with RJS templates. I notice that scriptaculous
has support for a concept called effect queues
(http://www.railsdevelopment.com/2006/01/15/effectqueue/). Is there
anyway to use these queues from rjs?
2006 May 02
0
Where do AJAX Callbacks go into RJS templates...
I''ve successfully created a super long link_to_remote() in my view
template that has lots of AJAX call backs to update my page. I want
to put these into RJS templates, but I can not figure out how to do
so. Are things like :loading, :success, :failure, :complete moot when
using RJS because this is the logic you put into the action from the
link_to_remote?
- TIA, Ken
2006 Mar 19
0
RJS Templates Don''t Automatically Eval
Following the directions for using RJS has nearly worked for me -
actually I''m using it successfully but not the way its documented and
others have reported it working. The javascript code is generated
properly but its not evaluted.
I followed instructions found at:
http://www.codyfauser.com/articles/2005/11/20/rails-rjs-templates
and
2006 Jan 09
2
Using RJS templates with observe_form
Hi there,
I''ve been checking out RJS templates, and have been trying to use them
with the observe_form helper.
However, the form values are no longer being passed in the params (as
soon as I point the action to the non-rjs and add the ''update'' clause
everything is working again). Is this expected?
Cheers,
Dave
-------------- next part --------------
An
2019 May 20
0
Opera browser on CentOS
Yes, it will not work on EL6, it requires newer glibc and gtk3.
It's time to leave EL6 behind (or stick to Firefox).
--
Sent from the Delta quadrant using Borg technology!
Nux!
www.nux.ro
----- Original Message -----
> From: "H" <agents at meddatainc.com>
> To: "CentOS mailing list" <centos at centos.org>
> Sent: Monday, 20 May, 2019 15:50:53
>