Tagged Questions
6
votes
2answers
1k views
HTML - Correct way of coding a checkbox with a Label
I've been using formtastic in order to generate HTML forms on rails applications. My question, however, is really HTML-related.
Today I found a strange behaviour on the way formtastic generates ...
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
271 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 ...
4
votes
3answers
419 views
2 submit buttons in a form
I have a question about forms. I have a fairly standard form that saves a post (called an eReport in my app) with a title and body. The table also has a "published" field, which is boolean. The saved ...
4
votes
3answers
549 views
Rails 3: Form getting submitted twice
I am developing a Rails application that has forms generated using formtastic.
I am developing & testing locally - that is - on localhost:3000 w/ Ruby-1.9.2, Rails-3.0.1, jQuery and AJAX.
...
3
votes
2answers
939 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
368 views
Railscast 198, but using formtastic
How could you do what's covered in RyanB's Railscast on editing multiple records individually, using Formtastic? Formtastic doesn't use form_tag, which RyanB's method relies on.
3
votes
1answer
587 views
Multi-step form in Rails 3 with Paperclip attachments
I'm creating a multi-part form in the style that Ryan Bates describes here:
http://railscasts.com/episodes/217-multistep-forms
http://asciicasts.com/episodes/217-multistep-forms (text-based version)
...
3
votes
2answers
6k views
Formtastic select list
<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %>
<% f.inputs do %>
<%= f.input :name %>
<%= f.input :price %>
<%= ...
2
votes
2answers
2k views
How to combine formtastic with Ajax form submission?
I would like to use formtastic instead of standard Rails helpers for my forms, however I currently submit them using Ajax (with remote_form_for). I suppose I could use the jQuery form plugin to ...
1
vote
1answer
75 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
2answers
246 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
164 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
259 views
How do I use formtastic to create a remote form using acts_as_commentable in Rails 3?
I am using acts_as_commentable. This is how the Model has comments added to it:
commentable = Post.create
commentable.comments.create(:title => "First comment.", :comment => "This is the ...
1
vote
1answer
152 views
Displaying an explicit number of nested attributes in a Rails form
Given three models:
Document
Asset
AssetCategory
A document accepts_nested_attributes_for assets (a document has_many assets), and an asset belongs_to an asset category.
I would like to display a ...
1
vote
1answer
240 views
Two Boolean fields. Single input field. Ruby on Rails
I have two boolean fields in my model. There is a dependency that only one can be true at a time. On my view page I want to display them as a radio inputs using formtastic. And not separately but as a ...
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
81 views
Using Formtastic for checkboxes for a habtm association in Rails3
I followed the directions in Railscast #17 HABTM Checkboxes (revised) to get this code for adding services to a project using a has_and_belongs_to_many association:
<% Service.all.each do ...
0
votes
1answer
125 views
Rails Formtastic nested form - form for attributes from join model
The problem I am facing with Formtastic is that I have a Form to create a new Order. In this form I want to select multiple existing Food items from a list. These should be added to the new Order I am ...
0
votes
2answers
31 views
Rails pass data to form for different model
I have two models, Users and Shifts.
Users: id, name
Shifts: user_id, time_length
User has_many Shifts; Shift belongs_to User. Fairly simple.
What I want to do is add a button on my show user ...
0
votes
1answer
123 views
Using Formtastic with Sorcery. How do I set up the login form?
This is basically a resource-less form, but the other examples don't seem to work. I'm using sorcery and formtastic. formtastic is working just fine for the new user form, but i can't seem to create a ...
0
votes
1answer
174 views
Rails 3.1 Formtastic input custom id or class
I want to make chain selects part inside my Formtastic form. But is it possible to set custom ids for multiple selects for future AJAX replacement?
This doesn't work:
<%= semantic_form_for ...
0
votes
1answer
106 views
Ruby on Rails Formtastic Multiple Options in Member_Label
I have a relational model where users have managers that are also users. The below code works great and does exactly what it's suppose to, but it's only displaying the first name of the manager. I'm ...
0
votes
1answer
46 views
Ruby on Rails Relational Drop Downs Second dependant on the First
I have three different models that will be involved with this. I am trying to create a user who will belong to an owner. The owner has many partners and the partner has many clients. The problem with ...
0
votes
0answers
33 views
weird error with Create action with params for nested objects
I have an Event model, which has_many Invitation. Invitation belongs to Groups and Users via polymorphic association (invitable_type and invitable_id).
class Event
has_many :invitations
...
0
votes
1answer
148 views
Rails formtastic automatically create unordered list for form inputs
I have a simple Formtastic form with nested model as follow.
<%= semantic_form_for @event do |form| %>
<%= form.input :user_id , :as => :hidden, :value => @user.id %>
<%= ...
0
votes
0answers
87 views
Invalid form control name error when displaying form
I'm following railscast #258 and using the following snippet in my view to add the JQuery token input field to my form:
<%= form.input :category_tokens, :label => "Categories", :input_html ...
0
votes
1answer
44 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
1answer
123 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
115 views
how do I use jquery to clear the input in a form?
Here is the haml for my form:
34 #new_comment
35 %strong Add Comment:
36 - semantic_form_for 'comment', :url => add_comment_url(@review), :remote => true do |f|
37
38 = ...
0
votes
1answer
272 views
get association values in rails forms
I'm building an app where a User has tasks and a task has a location.
The tasks and locations are in a nested_form using formtastic_cocoon, which is the formtastic gem with a jQuery extension.
The ...
0
votes
1answer
371 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
222 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
406 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
309 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? ...
0
votes
1answer
231 views
Creating a second form page for a has_many relationship
I have an Organization model that has_many users through affiliations.
And, in the form of the organization ( the standard edit ) I use semanting_form_for and semantic_fields_for to display the ...