Displaying 20 results from an estimated 3000 matches similar to: "link_to a action in the controlles is not called"
2005 Apr 27
5
Eager load mysteriously deletes records
Hi
This looks like a bug in ActiveRecord.
I am messing with eager loading (on 12.1) and all of a sudden records
started disappearing from a table (and I am not doing anything delete
related)!!
The following line works OK:-
@todos = Todo.find(:all, :include => [ :whens],:order => "position ASC")
The following line is mysteriously deleteing :where rows from the DB
after
2005 Oct 14
0
Adding extra field in form using ajax causes extra field to be overwritten, any way around that.
I''m having trouble when I try to add another field in the form using ajax.
I''m trying to add another line_item object into the invoice and i''m using
the link_to_remote function to implement this. When I do that though and
submit to the form, the line_item entries all have the same field name so
they get overwritten. I''m not sure how to get around that.
Here is
2008 Sep 01
2
Help with link_To
Hi,
I need some help!!
I have to make a link_to with a string
to have that strin in another controlle who can i do it??
i have something like this
<%= link_to ''Buscador'', new_consulta_path, :query=>"rssnews" %>
and then in the controller consulta params[:query]
--
Felipe Vergara Contesse
IngenierĂa Civil Industrial UC
2007 Sep 18
0
How to have multiple independently working controlllers for one view
Hi, i have the following problem - on my web project i will have two
areas (components) which will change (submit) independently. However,
the two areas will interact with each other, too, when some link is
clicked for example . There is a rough picture of my problem at thios
address : http://offtype.net/image_965035194627.gif.html . The blue
areas are those who work independently form one another
2011 Jul 31
8
Add virtual attribute
Hi!
Let''s say I have an app that handles a TODO list. The list has finished and
unfinished items. Now I want to add two virtual attributes to the list
object; the count of finished and unfinished items in the list. I also need
these to be displayed in the json output.
How do I achieve that?
Best Regards
Linus
--
You received this message because you are subscribed to the Google
2006 Jan 21
0
helpefying a list partial
Hi all,
I''ve got this code which is alway the same. In a list it displays a show, edit
and destroy icon behind each record.
<% for todo in @todos %>
<tr valign="top" class="ListLine<%= cycle("0","1") %>">
<td><%=h todo.prio %></td>
<td><%=h todo.title %></td>
<td><%=
2008 Dec 10
3
rspecing rjs - form.reset(''form'')
Hello,
>
> I couldn''t find much info on this.
>
> How do you rspec this: page.form.reset("form")
>
> I looked in the have_rjs source code and I can''t find anything on form
> reset.
>
> Thanks,
>
> --
> Andrei
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL:
2006 Aug 06
1
RJS error
http://pastie.caboo.se/7437
Page appears as:
Todo List
#testing
* Heres another Edit Destroy
* Testes Edit Destroy
* One more Edit Destroy
* Heres another Edit Destroy
* And another Edit Destroy
NameError in TodosController#create
undefined local variable or method `page'' for
#<TodosController:0x228bf4c>
RAILS_ROOT:
2007 Jul 06
1
Edge, link_to and mocks
Hi All,
Anyone noticed that using the newer link_to syntax in edge currently
fails with mocked objects in view specs or helpers.
eg. if you have something like the following in your view (or
equivalent in a helper):
<%= link_to @dog.name, @dog %>
as opposed to the current 1.2 syntax:
<%= link_to @dog.name, dog_path(@dog) %>
Using a mock_model as the ''dog''
2006 Aug 01
0
Newbie Syntax Question: Insertion Bottom with link_to and render Partial
I want to use link_to/link_to_function and then use Insertion.Bottom
and also have render partial in it. I could not find one example with
all three and I have been working on syntax for it for a long time
now.
In effect I want the following: When I click on my link
<%= link_to_function("Post", "new
Insertion.Bottom(''oldpost'',render(:partial
2006 Jul 13
3
strange behavior with link_to for "blog" and "gallery"
Okay, what''s so different about the bellow code? When I use the link_to
function in a partial (three times passing "Stats", "Blog", and
"Gallery")...
<%= link_to(menuItem.to_s, :controller=>menuItem.to_s.downcase)%>
I get...
<a href="/stats">Stats</a>
<a href="/blog">Blog</a>
<a
2006 Jul 23
1
link_to
Help!
I wanted to make a ruby interpreted variable <%= @variable %> to be the
linkname of my <%= link_to "linkname", {options" %> expression.
How can I do that?
--
Anime ni naruttebayo!!!
Uchiha Itachi''s Trashcan@ptoys
http://ptoys.proboards40.com/index.cgi?board=showroom&action=display&thread=1108620582
-------------- next part --------------
An
2006 Jul 31
0
problems testing helpers - link_to and url_for don''t work...
So I''ve used the helper test plugin, and also tried some things from
Rails Recipes, and basically neither seems to work for cases where a
helper does anything related to link_to/url_for, and this includes
calling named_routes. This is obviously an issue, as a common use for
helpers is to refactoring something like this:
<%= link_to "text that changes slightly", :id => id
2006 Jun 12
0
how to get link_to mouse rollover to pop up a "help" box.
I want to have a link_to (<a>) that when the mouse rolls over it (hover)
a little if possible semitranspartent "box" (maybe 80px*80px) is
displayed with some help/further information included.
Is it possible to do this?
--
Posted via http://www.ruby-forum.com/.
2006 Jun 14
1
Absolute URL from link_to?
What options do I need to provide to link_to so that it generates truly
absolute URLs (i.e. including protocol://host:port/path)? It seems that
even when I provide :host and :protocol arguments to url_for that it
suppresses these when they match the current request.
2006 Jun 27
4
Use link_to in a controller?
Hello.
I realize that link_to is a helper that generally only has use in a
view file, but recently I have come across a situation where it would
be useful in a controller. I am trying to create a flash[:notice] and
I want to link to another page. Of course, I could hard code the HTML,
but for the sake of consistency, I was wondering if there is a way to
abstract it from within the controller
2006 May 05
1
link_to - passing parameters
Hi. Is it possible to compose GET request using ''link_to'' and get passed
params like: params[:foo][:bar]?
2006 May 08
4
link_to - Going Back without knowing the action name.
Hi,
I have a bunch of link_to''s in my code that are simple Back buttons that
should basically just go to the previous request. Is there a way of doing
this without specifying the action to execute? The problem is, sometimes I
may render the same view through separate actions so I wouldn''t know which
action to go back to.
Thanks.
-------------- next part --------------
An HTML
2006 May 09
1
Reusing a model to form and link_to.
Hy guys,
Inside my app I have a form which contains user information.
Sometimes a have a form with a text_field as above:
<%= form_remote_tag(:html => { :action => url_for(:controller =>
"my_controller", :action => "my_action") }) %>
<%= text_field(''my_object'', ''my_parameter'', :maxlength =>
2006 May 11
1
quick link_to question
Hey there,
is there a way to include more variables besides the id as a hidden
field (to not show in the url) when i''m using :post => true on a
link_to() ?
Thanks,
Andr?s
--
Andr?s Tarsoly
tarsolya@gmail.com