xamenrax
xamenrax

Reputation: 1744

remote simple_form_for with re-defined method

Cheers!

= simple_form_for :search_input, :url => 'tracks/result', :method => :get do |f|

How to make this form :remote => true correctly?

Upvotes: 1

Views: 5424

Answers (1)

MrYoshiji
MrYoshiji

Reputation: 54902

Like this:

= simple_form_for(:search_input, :url => 'tracks/result', :method => :get, :remote => true) do |f|

Upvotes: 2

Related Questions