I\'m new to rails and I guess you can answer this question easily. What I got so far is = f.input :task, :as => :select, :collection => @tasks, :include_blank => true
I\'ve begun using Formtastic in the last couple days and have come to my first head-scratcher. I\'m working with items that each have a few associated accounts.On the page in question you need to sel
I\'m attempting to build a custom control for Formtastic that takes a latitude and a longitude, however, I\'m not sure how to go about passing the method names through. Ideally I\'d have the following
I have an article model and an category model. Category act as tree. What is the best approch to build a select list to allow the adm开发者_如何转开发inistrator to select an category from a select li
I have in开发者_运维技巧put/select on Formtastic form f.input :some_model_values, :as => :select
f.input :some_model_values, :as => :select Using Formtastic, I need to set a text for options on my select input, but not populated from :some_model_开发者_运维知识库values.
is there any possibility to send from formtastic form value of :string field like - semantic_form_for :project do |form|
i\'m using formtastic, all is ok, but strange thing - on = form.input :birthdate, :as => :date it renders to something like
I\'m trying to set up a many to many relationship using the has_many :through method and then use a multi-select field to setup the relationships. I\'m following this tutorial:
I have a form I\'m trying to set up ... Users can have many posts, and each post can have many people watching it.