2
votes
2answers
64 views
Is there any rails plugin like formtastic that makes show and index views easier to code?
I use formtastic to create new and edit forms for my resources.
with something like f.inputs it fetches and displays all my fields automatically.
I would like to know if there is something similar …
0
votes
1answer
65 views
Make ajax result as select list with formtastic
is it possible to use Ajax and make the result as select list with Formtastic?
example:
semantic_form_for @user, :url => profile_path(@profile.id) do |f|
- f.inputs do
- f.input :province, …
0
votes
1answer
42 views
nil :selected value for date helper in formtastic
I'm using the following code for a date field:
<%= f.input :date_of_birth, :selected => nil,
:order => [:day, :month, :year],
:prompt => {:day => "Day", :month => …
1
vote
1answer
48 views
How can I change the method used in Formtastic?
Hi guys,
I was wondering how can I specify the method to send the data from a Formtastic form.
It usually uses POST, but I'd like it to use GET in some cases (i.e. for a search form).
Is it …
0
votes
2answers
26 views
Display conditional values in a Formtastic select
How do I instruct Formtastic select to only display values based on a condition?
- semantic_form_for @member do |f|
- f.inputs do
= f.input :person
= f.input :role, :include_blank => …
0
votes
3answers
158 views
virtual model and form_for (or formtastic)
Hi, 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 …
1
vote
3answers
140 views
Default value for date_helper in formtastic
As basic as it sounds, I can't make the date_helper default to a date, as in:
- semantic_form_for resource do |f|
- f.inputs do
= f.input :issued_on, :default => Date.today
= f.buttons
…
1
vote
2answers
413 views
Formtastic select list
<% semantic_form_for(@product, :html => {:multipart => true}) do |f| %>
<% f.inputs do %>
<%= f.input :name %>
<%= f.input :price %>
<%= …
1
vote
1answer
34 views
Individual Form Params when POST data is split
I'm trying to access a date variable from a form individually to the other variables. The form is a formtastic plugin form. The issue I am facing is that the date is a three-part dropdown and simply …
