I''ve followed the instructions on the git page for rails three, and set my form tags to :remote=>true but the inputs in the forms are not showing up with any data-elements and when i change data nothing is sent back to the server is there something else i have to do on the forms, do all the input tags have to be set to :remote=>true as well? thanks ken -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
Post a view, i.e. a file that ends in .html.erb, which contains your form. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.
> but the inputs in the forms are not showing up with any data-elementsAn <input> element does not send out a request. A <form> sends out a request when you click on the submit <button>. In other words, after the user fills out a form, they click the submit button, then the browser creates a request containing the info on the form, then the browser sends the request to your server, and the server passes the data to your rails app.> and when i change data nothing is sent back to the serverData gets sent back to the server after you click the submit button. It''s possible to use javascript to detect an onchange event for an <input> element, but you need to know javascript or jquery to do that. -- 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 rubyonrails-talk-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org To unsubscribe from this group, send email to rubyonrails-talk+unsubscribe-/JYPxA39Uh5TLH3MbocFF+G/Ez6ZCGd0@public.gmane.org For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en.