search for: mcubel

Displaying 5 results from an estimated 5 matches for "mcubel".

Did you mean: cubel
2012 Feb 02
3
MVC questions with rails
2011 Jun 29
3
Rails double submit -> double post -> duplicate data
...the first register and raise and error for the second? We can''t duplicate data if we need it -> Where should we implemented in the controller "create"? Can it be in the class ApplicationController? Thanks in advanced -- Miquel Cubel Escarré +34 699 73 22 46 mcubel-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org "Computers are good at following instructions, but not at reading your mind." Donald Knuth. "Los ordenadores son buenos siguiendo instrucciones, pero no leyendo tu mente." Donald Knuth. -- You received this message because you are subs...
2011 Oct 10
2
nested attributes question
Hi, I have a product that has many photos, so when creating a new product the user can upload as many photos as they want. This all works fine using nested attributes for. I want the user to be able to set one of the photos as the default/primary photo, so i have played around with using a radio button to decide which photo to select as the default but i cant seem to figure out how to save this
2011 Aug 16
7
left menu for Fedena Project
i wanna add left menu in the http://demo.projectfedena.org/ login:admin password:admin123 as there is no left menu in that i thought of adding a left menu. can any one tell how to do that with ROR. -- 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
2011 Jun 17
7
Encoding
What''s a good solution for fixing character encoding problems for compatibility between ascii and utf-8? The database is postgres and is encoded in utf-8. Once in awhile there will be a compatibility error from strings from a webform. Is there a command to fix this besides using a_string.force_encoding(''utf-8'')? Even this doesn''t seem to always work either.