Top "Formtastic" questions

Formtastic is a Rails form builder plugin with semantically rich and accessible markup.

formtastic select, one entry selected as default

I have an input which I render :as => :select. I would like one option to be selected as default. …

ruby-on-rails formtastic
Formtastic select list

<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %> <% f.inputs do %> <%= f.…

ruby-on-rails forms formtastic
How to properly pass collection for input in Formtastic

I 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 formtastic
How to force the method for a formtastic form to be put?

I have something like semantic_form_for @whatever, :url => whatever_url which generates a from with method="post" I …

ruby-on-rails formtastic
No-Model Formtastic Form

I am looking to reproduce the following with Formtastic: <% form_tag '/search', :method => 'get' do %> <%= …

ruby-on-rails formtastic
Formtastic / ActiveAdmin multi-select many to many checkbox association issue

I am using activeadmin and it has formtastic built in as many of you who use it know. I have …

ruby-on-rails-3 activeadmin formtastic
Formtastic/ActiveAdmin set a default value for a select input

I am working on a custom form in ActiveAdmin which I decided to use it for adding/editing to follow …

ruby-on-rails activeadmin formtastic
How to filter IS NULL in ActiveAdmin?

I'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-search
Active admin multiple file/image upload with paperclip

I use Active admin and I need upload Galleries with a lot of images. How can I do it? My …

ruby-on-rails paperclip activeadmin formtastic
Activeadmin formtastic dynamic select

I 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