[Rails] Re: Strange view problem

2011-05-23 Thread Kevin
Removing the entire loop from the calling view seems to have solved the issue. Thanks everyone. @Jim I was trying to have the partial render on the same page that the search was being done on to see whether the output was different on that page. That code is such a dirty hack as it stands right

[Rails] Re: Strange View Problem

2009-08-07 Thread Gary Chris
Thanks lads. I'll check that when I finish work. -- Posted via http://www.ruby-forum.com/. --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrail

[Rails] Re: Strange View Problem

2009-08-06 Thread James West
firebug is your friend. As colin suggested, viewing the source code in your browser will give you a clue as to what is happening. If you use firebug (plugin for firefox) to inspect element you will see all the css, layout and source code, you can even edit the soirce code as you look at it and

[Rails] Re: Strange View Problem

2009-08-06 Thread Colin Law
2009/8/6 Gary Chris : > > Hi, > > I've come across a strange issue with one of my views. > > Simple login form, > > <% form_tag do -%> > >        Login >        <%= text_field_tag 'login' %> > >        Password >        <%= password_field_tag 'password' %> > >        <%= submit_tag 'Log in' %> > <