Tagged Questions
5
votes
2answers
1k views
Formtastic, own :as input type
How I can add my own field types to formtastic ?
For exemple, I need to have a custom datetime input, and I want something like this:
<%= f.input :start_date , :as => :my_date %>
This ...
4
votes
2answers
246 views
How to create Formtastic “partials”
Basically, I'm trying to create a dynamic group of check boxes that are keyed off a category select in the same form. For example, a user would choose a category from the select, and then a list of ...
3
votes
1answer
102 views
How to use grouped_collection_select to show multiple selection?
I'm using the following code to display a tree view selection box of categories:
grouped_collection_select(:categories, :category_id, Category.top_level, :children, :name, :id, :name, :include_blank ...
3
votes
2answers
765 views
Image file input with Formtastic and ActiveAdmin
I started to use formstatic but I need to make a file field with image preview. I mean, when i edit an object, i want to see the image already linked.
How can I do that?
Thank you !
3
votes
1answer
749 views
Assigning a nested attribute with Formtastic
I've been trying to figure this one out for a while but still no luck. I have a company_relationships table that joins Companies and People, storing an extra field to describe the nature of the ...
2
votes
1answer
189 views
Single Table Inheritance with Formtastic
So I have two models that inherit from another as follows:
class OneTime < Step
has_one :due_date
accepts_nested_attributes_for :due_date
end
class Repeatable < Step
has_many :due_dates
...
2
votes
2answers
239 views
Rails / Formtastic - Validation isn't occuring
I'm using formtastic to validate forms:
<%= semantic_form_for @user do |f| %>
<ul class="formItem">
<%= f.input :username, :required => true, :label => "Your ...
2
votes
3answers
413 views
Retain Search Form Data Ruby On Rails
Trying to build a search on my homepage with simple_form (Pretty much same as formtastic). The search works fine and im getting my results but after submission I want to retain the vales with what the ...
2
votes
1answer
271 views
Accessing object of form in formtastic
So I'm making a survey app. The users choose a type of form on the backend, and it displays as a certain type on the front end. That's only ideally, of course. What happens now is I can't access the ...
2
votes
2answers
493 views
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 => Apple.all
The problem is, though that I need Formtastic to access a ...
2
votes
1answer
507 views
authlogic - cause for unsuccessful session creation and no error messages (with formtastic)
I have 2 questions about authlogic:
1 - how to get cause of unsuccessful session creation (for example - not confirmed, blocked, wrong pass etc) to use it in app logic (route to another page for ...
1
vote
2answers
24 views
Rails 3 Carrierwave How to delete file which is an attribute of a model?
I followed the Railcast #253 http://railscasts.com/episodes/253-carrierwave-file-uploads and works great. But then I implemented it with ActiveAdmin and therefore Formtastic (ActiveAdmin uses ...
1
vote
2answers
160 views
Rails 3- Active Admin (Formtastic), set column Width
I am customizing the index form in active admin.
I have some columns like:
column :id
column :name
I want to set the width of those columns.
Is there an easy way?
Thanks
1
vote
0answers
243 views
Configure the label of Active Admin has_many
Well I have a two models related with a on-to-many assoc.
#models/outline.rb
class Outline < ActiveRecord::Base
has_many :documents
end
#models/document.rb
class Document < ...
1
vote
1answer
98 views
Rails nested model with formtastic is skipping one field?
I have this structure models
class Tournament < ActiveRecord::Base
AGES = ["5u", "6u", "7u", "8u"]
has_many :courts, :dependent => :destroy
accepts_nested_attributes_for :courts, ...
1
vote
1answer
66 views
Formtastic make the correct fields on the fly?
I am using Formtastic and also using the accepts_nested_attributes_for ..here are models
class Tournament < ActiveRecord::Base
has_many :courts, :dependent => :destroy
...
1
vote
1answer
210 views
Nested Form Update in Rails 3 sets foreign key as NULL
I am trying to update a user record using a formtastic nested form. Its structure is as ollows
User
Admin
Address
When I send the form to update details, while updating the address or admin ...
1
vote
2answers
232 views
Are there any bad consequences to using formtastic?
This gem seems too good to be true. It's like the ultimate time-saver.
Have you guys run into any problems or limitations that I should be aware of before I commit to using it?
How is the ...
1
vote
2answers
149 views
How to change datetime intervals in Formtastic
Formtastic currently automatically creates a range of 1..59 for datetime inputs.
But what if I wanted the datetime minute options to be 0, 15, 30, 45?
Is there a way I can set the collection for a ...
1
vote
1answer
180 views
another accepts_nested_attributes_for issue - not deleting
Not sure why I keep having issues with this. Anyway, here are the models:
class Coupon < ActiveRecord::Base
has_many :coupon_codes, :dependent => :destroy
accepts_nested_attributes_for ...
1
vote
1answer
8k views
undefined method `model_name' for NilClass:Class (Using formtastic in Rails 3.0.3, Ruby 1.9.2)
A tad bit confused as to why this isn't working. I'm using Ruby 1.9.2 with Rails 3.0.3 on Windows 7.
Trying to make a form with formtastic for a post model, however, I keep getting undefined method ...
1
vote
0answers
475 views
fields_for, formtastic, ActiveMerchant, and validation errors
I'm trying to use Formtastic to create a payment form, since I'd like to use the inline errors. I'm using ActiveMerchant to handle the billing. I have the following form:
<%= semantic_form_for ...
1
vote
1answer
461 views
formtastic weird month name display
i'm using formtastic, all is ok, but strange thing - on
= form.input :birthdate, :as => :date
it renders to something like
<li><label ...
1
vote
3answers
606 views
Error while updating a record using Formtastic in HAML templates
I am using formatastic in a HAML form.
- semantic_form_for @company do |f|
- f.inputs do
= f.input :description
= f.input :type
= f.input :industry
= f.input :hq
= f.input ...
1
vote
3answers
3k views
virtual model and form_for (or formtastic)
all.
Sometimes we need form without model creation - for example search field or email, where should be send some instructions. What is the best way to create this forms? Can i create virtual model or ...
0
votes
1answer
31 views
Rails 3 Formtastic. How can I make formtastic display only the month and year fields WITHOUT the day?
I need formtastic to display only month and year fields, WITHOUT the day fields.
The datepicker is nice but it shows the whole calendar. I don't want the datepicker.
f.input :accounting_month, ...
0
votes
1answer
14 views
Form Helper: Fields_for - display image
Is it possible to take from a form builder text_field, only the value of it? For example:
<% f.text_field :name %>
Generates:
<input type="text" value="ddd" size="30" name="girl[name]" ...
0
votes
1answer
74 views
Rails 3. Conditional fields with Formtastic
I'm using ActiveAdmin and Formtastic.
I have an invoice form that has a drop down menu of shipments.
form do |f|
f.inputs "Shipment Details" do
f.input :shipment_id, :label => ...
0
votes
1answer
63 views
Rails 3 - Active_admin select nested object in many to many
I have two models. Deals and Stores.
I want to add already created Deals when creating a Store.
I want to add already created Sores when creating a Deal.
I am trying to use f.has_many, but I can't ...
0
votes
2answers
49 views
Rails 3- Active_admin - Show field in the new page but not in the edit
I have a model called user. I want to show the password field just on the create page, not the edit one.
ActiveAdmin.register User do
form do |f|
f.inputs "User Details" do
...
0
votes
1answer
122 views
Rails 3 and Formtastic. How to display fields according to selection (ajax)?
If I have shipments, each shipment has one of four possible modes. When I want to create an invoice, I go to New Invoice, select shipment from select menu (what shipment the invoice is for). If the ...
0
votes
0answers
62 views
Rails 3 iso-3166-country-select plugin how to include blank and set priority countries?
I'm using ActiveAdmin (which uses Formtastic) and the iso-3166-country-select plugin for country select menus.
I would like for the plugin to include a blank option first, in case the user forgets to ...
0
votes
1answer
34 views
Ruby on Rails, formtastic gives different HTML
I have this template:
- f.inputs do
= user.input :is_vip?, :as => :boolean, :label=>'VIP'
= f.input :test, :as => :boolean, :required => false, :label => "This is TEST company"
= ...
0
votes
1answer
71 views
ActiveAdmin and Formstastic, 3 drop down select menus from the same table
I have a model called Shipments, that has string data type columns: place_of_origin, place_of_loading, place_of_delivery.
I have another model called Places that has names of cities in them.
So in ...
0
votes
0answers
50 views
Associate Inner classes in rails
I am building a FormBuilder class without Activerecord in Rails, creating Inner Class in it at runtime.
Is there any way I can associate the parent class and inner class and access it with ...
0
votes
1answer
62 views
Display extra attributes for option tag in a Formtastic select
<% semantic_form_for(@buss, {:url => url, :html => {....}}) do |f| %>
....
<%= f.input :country, :label => 'Country:', :include_blank => true %>
....
and country select is rendered as..
...
0
votes
2answers
254 views
rails ActiveAdmin nested form formtastic issue
Been trying to figure out why my form won't work properly. -- this is
the closest I get to getting it working, it shows the location field
when I do this however when I submit form it says "Unknown ...
0
votes
1answer
87 views
How do i pass two values to the partial
I have this chunk of code
<%= semantic_form_for @tournament do |f| %>
<%= f.semantic_fields_for :courts do |builder| %>
<%= render :partial => "court_fields", :locals ...
0
votes
3answers
118 views
Nested form not working with has_many
I've got a model Order
class Order < ActiveRecord::Base
has_many :order_details, :class_name => "OrderDetail"
accepts_nested_attributes_for :order_details
end
When in my view I try to ...
0
votes
1answer
121 views
Formtastic Collection Sorting
I need to sort a collection for formtastic by their state, wether they are selected or not.
My setup looks similar to the following
# user.rb
class User
has_and_belongs_to_many :colours
end
ยด
# ...
0
votes
1answer
41 views
Iterate Form fields
I have build a module to add translations for each standard topic. Theses topic got many standard options and you can translate it directly in page.
I got an issue with my form about the edit view.
...
0
votes
0answers
53 views
Formtastic has_many_through odd issue
I am setting up a formtastic form with a :through relationship, the three model definitions are...
class Product < ActiveRecord::Base
attr_accessible :name, :overview, :features, ...
0
votes
1answer
119 views
problem with using form / formtastic on 2 objects
I am really having problems getting this thing done. I have a model appointment and a model appointment_block. The appointment_blocks table saves a start and end time as datetime. I am using a method ...
0
votes
1answer
234 views
Default not getting selected in Formtastic form
I'm working in Rails 2, and my model look like this:
class Site < ActiveRecord::Base
has_many :contacts
def primary_contact
Contact.find :first, :conditions => {:site_id => self,
...
0
votes
2answers
267 views
Why am I getting the error “undefined method `name' for” in a Formtastic / haml view where “name” is a property on the model?
This is probably something stupid, but I don't know nearly enough about rails & ruby to see it. I have the following schema & view but I am getting the error mentioned below. Business inherits ...
0
votes
1answer
352 views
Formtastic non-model form, integration with external site, override/specify the input ID values
I'm using formtastic to collect information from a form and post dirctly to an external site.
I have no problem generating the form itself. However, since this is being submitted to an external ...
0
votes
1answer
108 views
comments not saving post_id
Im running into a small (newbie) problem.
I've got 2 models: question & reviews.
Reviews schema: question_id, user_id, rating, comments
On the 'show' view, i've integrated the following form ...
0
votes
1answer
217 views
Upgrade to Rails3 from Rails3.rc2, and forms are blank
Using ruby 1.9.2
if I change
gem 'rails', '3.0.0.rc2'
to
gem 'rails', '3.0.0'
None of my forms render.
My forms all use <%= %> and everything works great in rc2. I don't even get any ...
0
votes
2answers
399 views
Custom Formtastic Control with Multiple Parameters
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 in ...
0
votes
2answers
291 views
formtastic - :string field value as Array and not found-s
is there any possibility to send from formtastic form value of :string field like
- semantic_form_for :project do |form|
- form.inputs do
= form.input :task_ids, :as => :string
as Array? ...