Displaying 11 results from an estimated 11 matches for "uajrd0nveow".
2009 Feb 09
4
forms that mix new and old records
I''m trying to create a form/view that displays a mix of records that
exist in the database and records that the user is working on but that
don''t yet exist in the database. I want to leverage all of rails'' nice
form helpers, especially the params hash that it generates for the
records when the form is submitted. So - I am creating ''dummy'' records
with
2009 Feb 18
5
fields_for and Conflicting types for parameter containers. Expected an instance of Hash but found an instance of Array.
I''m trying to use ''fields_for'' in a form. I want the same form to
support both the creation of new obejcts as well as the editing of old
ones. So - in my controller, sometimes I will pass to the form an
object that already exists in my database and has an id and other
times I will pass it a newly created instance of an object that does
not yet exist in the database and
2007 Sep 25
2
attachment_fu default path
...my files go on been uploaded to public/files/0000/00[last inserted
id]/my_file_name.ext.
What am I missing? I want that all my files go to public/files.
Thank you very much amd sorry my poor english.
--
Davi Vidal
--
E-mail: davividal-UiHwsRqXctc1RhZgQKG/ig@public.gmane.org
MSN : davividal-uAjRD0nVeow@public.gmane.org
GTalk : davividal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Skype : davi vidal
ICQ : 138815296
2007 Aug 17
1
Scaffold (Agile Web Development With Rails)
...Response
Headers:
{"cookie"=>[],
"Cache-Control"=>"no-cache"}
[output]
Any tip?
AFAIK, my code is identical from the book.
Sorry the poor english.
Thanks.
--
Davi Vidal
--
E-mail: davividal-UiHwsRqXctc1RhZgQKG/ig@public.gmane.org
MSN : davividal-uAjRD0nVeow@public.gmane.org
GTalk : davividal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Skype : davi vidal
ICQ : 138815296
2007 Mar 08
0
Need a Linux system Engineer RoR
...inux
on HP severs.
Enterprise Level administrative control of a min 25 Linux server
systems.
Expertise at installing, configuring, and troubleshooting Oracle
products running on Linux, such as Oracle 10g, OID, oblix, OVD etc
Do mail me if you are interested in joining us.
Mail me at nikhiljohn-uAjRD0nVeow@public.gmane.org/nikhilj-s+034s8IlZqZEO45NX+DXbb7wjY1XU0g@public.gmane.org
--
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 t...
2007 Nov 03
0
http://manuals.rubyonrails.com didn't working?
I can''t access http://manuals.rubyonrails.com and it gives me 404 error.
Someone knows what''s going on?
Thanks
--
Davi Vidal
--
E-mail: davividal-UiHwsRqXctc1RhZgQKG/ig@public.gmane.org
MSN : davividal-uAjRD0nVeow@public.gmane.org
GTalk : davividal-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org
Skype : davi vidal
ICQ : 138815296
2009 Jan 14
7
Utter Newbie, HELP!!!!
Dear Ruby on Rails Expert with Compassion for a Newbie,
(:->)
I just got started. I tried:
At the Windows Command Prompt:
ruby
puts "Hello, world!"
^D
The response is: -:2: syntax error, unexpected ''^'', expecting $end
I am using Ruby 2.2 (ruby186-26.exe). What can I do, besides pull
out my hair? This can be very discouraging for a complete novice.
Roger
2008 Mar 01
2
No route matches with {:method=>:get} Error in AWDWR Book
Hi I''m working on the AWDWR book and I''m on the admin section of the
book. I have rails 2 installed on my machine and I have ran into an
error when I created my controller login but when I go to
http://localhost:3000/login/index I get this error:
No route matches "/login/index" with {:method=>:get}
I haven''t touched the routes.rb file and when I generated
2007 Sep 12
2
Prototype.js and Coremetrics eluminate.js issues
Hi,
I am trying to use prototype.js on a JSP that also contains some
javascript from Coremetrics (eluminate.js). Coremetrics is used for
tracking marketing clicks.
When I have both of these javascript imports on the page I get
javascript errors in the eluminate.js file. I get javascript errors
that say "Undeterminate string constant."
It looks like the prototype.js file is somehow
2007 Mar 14
9
file_field doesnt work inside form_remote_for
When I do file_field within a form_for things are fine... but within a
form_remote_for, with nothing else changed, I find that the params
does not even have the element document[uploaded_file] even though it
is definitely present in the HTML source in the form. Obviously the
file upload fails.
Am I missing something? Or has someone else faced this? Or is this a
known bug?
Rajesh
2007 Aug 26
0
How can I return a json packet?
I used extjs and ror,this is the part of my ror code:
def create
@enterprise = Enterprise.new(@params[:enterprise])
p @enterprise
if @enterprise.save
flash[:note] = ''Enterprise unit was successfully created.''
p "michael"
redirect_to(:action=>index)
else
p "error"
render_action ''new''