Formtastic is a Rails form builder plugin with semantically rich and accessible markup.
I have an input which I render :as => :select. I would like one option to be selected as default. …
ruby-on-rails formtastic<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %> <% f.inputs do %> <%= f.…
ruby-on-rails forms formtasticI need to pass a collection to the standard select input in Formtastic: f.input :apple, :as => :select, :collection =&…
ruby-on-rails ruby ruby-on-rails-3 formtasticI have something like semantic_form_for @whatever, :url => whatever_url which generates a from with method="post" I …
ruby-on-rails formtasticI am looking to reproduce the following with Formtastic: <% form_tag '/search', :method => 'get' do %> <%= …
ruby-on-rails formtasticI am using activeadmin and it has formtastic built in as many of you who use it know. I have …
ruby-on-rails-3 activeadmin formtasticI am working on a custom form in ActiveAdmin which I decided to use it for adding/editing to follow …
ruby-on-rails activeadmin formtasticI've a table with an integer column called "map_id", I want to add an activeadmin filter to filter if …
ruby-on-rails-3 activeadmin formtastic meta-searchI use Active admin and I need upload Galleries with a lot of images. How can I do it? My …
ruby-on-rails paperclip activeadmin formtasticI would like to make a dynamic select option via Activeadmin's formtastic like so: form do |f| f.inputs "Exam …
ruby-on-rails activeadmin has-many-through formtastic