Tagged Questions
2
votes
1answer
398 views
rails jquery formtastic partial => undefined method 'inputs'
I'm trying to update the values of a select statement when another field is changed.
This is my code:
Form (_form.html):
<%= semantic_form_for [:projects,@projectmilestone], :remote => true ...
1
vote
3answers
339 views
Ruby on Rails + Formtastic + jQuery UI datepicker
I'm trying to install the jQuery UI datepicker with Formtastic. I followed http://blog.brzezinka.eu/webmaster-tips/ruby/ruby-on-rails-formtastic-jquery-ui-datepicker so I:
added jQuery UI (confimed ...
0
votes
1answer
278 views
Rails 3 does not show jQuery Date Picker
I followed a Railscast by RyanB to add jQuery date_picker to a form and and got stuck for a couple days now. According to the instruction, there are only three changes:
Change application.html.erb ...
0
votes
1answer
1k views
Make ajax result as select list with formtastic
is it possible to use Ajax and make the result as select list with Formtastic?
example:
semantic_form_for @user, :url => profile_path(@profile.id) do |f|
- f.inputs do
- f.input :province, ...