Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
1answer
748 views

implicit argument passing of super from method defined by define_method() is not supported. Specify all arguments explicitly. (ActionView::TemplateError)

Most of you should already know Pragmatic book's "Agile web dev with rails" (third edition). On page 537 - 541 it has "Custom Form Builders" code as follows: class TaggedBuilder < ...
4
votes
3answers
2k views

Symfony 2 - how to pass data to formBuilder?

I'm using entity choice list in my form. I want to use only specific entities (in example: only groups that user belongs to) So, in controller, I'm getting these groups, and trying to pass them into ...
3
votes
1answer
78 views

How do I write a resource-less form with formtastic

I'm having trouble creating the following with formtastic. It's a simple form, but it's not based on a full resource, just a query string param I'd like to send. # index.html.haml ... = form_tag ...
3
votes
2answers
622 views

Rails money gem and form builder

I'm having an issue with the forms and the money gem. This is my problem: I create a record which has an "amount" field (mapped to money object). Let's say I enter 10 (dollars). The money gem ...
2
votes
2answers
297 views

Passing ActionView::Helpers::FormBuilder to a partial

I am atempting to dinamically create form elements given a certain AJAX request. This is my setup: View: <%= link_to 'Next', check_unique_id_students_path, :remote => true %> ...
2
votes
1answer
168 views

Setup default CSS class for Rails' form builder helper methods

I'm looking for a generic way to apply some external CSS frameworks in a Rails application. These frameworks typically define a set of class names which should be used for certain HTML elements. ...
2
votes
1answer
529 views

form_for with association - how to provide parent id?

Assuming the Post - Comment model with the nested resources: resources :posts do resources :comments end How should the app/views/comments/_form.html.haml (erb will do as well) look like so that ...
2
votes
2answers
963 views

Need Advice for ASP.NET Form Builder

I would like learn and create customizable registration form , user can edit and build all sorts of forms with different element something like Google Docs online form , i want to learn how to develop ...
2
votes
2answers
2k views

Rails Formbuilder Question

I'm working a project that has recurring, weekly events. Thus, I use several DateTime fields in a nontraditional way. What I'm working on is a FormBuilder that creates a field that outputs a select ...
1
vote
0answers
244 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
106 views

Adding a method to FormBuilder that calls a helper method that renders a partial

So I've got this helper method, right? def table_form_field(name_or_options = nil, *args, &block) # ... render :partial => "snippets/table_form_field", :locals => options end It's ...
1
vote
2answers
42 views

How to create a submitted CGI::FormBuilder object?

I have a method that takes a cgi object and creates a CGI::FormBuilder object. if it is submitted, does a db connection and process data otherwise, prepopulates some data and renders the form. I want ...
1
vote
1answer
220 views

Database Form Builder For MS

Like the form builder of oracle databases, Is there a MS form builder !? As it will get me an output of a .net form that i can show/edit/delete/update data !! Manipulating data is not one of my ...
1
vote
1answer
174 views

rails form builder quick question

I need to create a select statment with name and id like this but no using a form builder for one of the fields. <select name="link_list[links][][link_to_path]" ...
1
vote
1answer
127 views

Table Structure to Store Data from Dynamic Forms

We have a Form Builder (web) application which allows users to design their forms dynamically. What could be best table structure to store the data submitted through these dynamically created forms? ...
1
vote
1answer
269 views

Rails Test helper method accepting ActionView::Helpers::FormBuilder object

I'm trying to write a test for a helper method that accepts a form helper object, but I don't know how to create a form object within the test. /app/views/blahs/edit.html.erb <% form_for :blahs ...
1
vote
1answer
2k views

Setting Formtastic as Rails 3 default form builder, is it possible?

Something like this in application.rb: # Configure application generators config.app_generators do |g| g.form_builder Formtastic::SemanticFormBuilder end If I do so I get an error when I try to ...
1
vote
1answer
107 views

Disable Javascript validation in CGI::Formbuilder

Creating a form with CGI::Formbuilder generates a HTML page containing javascript to validate the fields (with an old-school style "alert" if the form is invalid) as well as back-end verification in ...
1
vote
2answers
553 views

RoR 3 - f.label embeds an <span> tag - howto

How would i do the following. My current code is : <%= f.label :email, html_escape("<span class=\"big\">Test</span>") %> This doesn't shows what i want, because the <span ...
1
vote
1answer
621 views

How do I pass an array to fields_for in Rails?

I want to use fields_for on a subset of records in an association. I have a Month model, which has_many :payments. But in my form in my view I only want to have fields_for some of those payments. ...
1
vote
1answer
103 views

Howto: Access a second related model in a nested attribute builder block

I have a basic has_many through relationship: class Foo < ActiveRecord::Base has_many :bars, :dependent => :destroy has_many :wtfs :through => :bars accepts_nested_attributes_for ...
0
votes
1answer
57 views

Dynamic Form Building and Passing Query Parameters

I am working on a form that is generated dynamically based on some meta-data tables in my database. I create input tags with names like setting_1, setting_53, setting_22 where the number is the ...
0
votes
1answer
143 views

Symfony 2 : Access database inside FormBuilder

I'm building a form which contains a field named 'category', I need a choice list to do that, but I don't find out how to fill this choice list with the several categories stored in the database. ...
0
votes
2answers
275 views

Symfony 2 date input with only year selector

Is it possible to make a date input field, with only year selector widget in Symfony 2 FormBuilder, or should I use a simple text type input field?
0
votes
2answers
52 views

Automatic Formbuilder for Mongoid 2.0 ? Rails

Is there a formbuilder for Mongoid 2.0 ? Which generates automatically a form from a model. Thanks
0
votes
1answer
42 views

Catalyst::Controller::FormBuilder view does not render input fields

I'm trying to use the example view in CPAN for Catalyst::Controller::FormBuilder, which looks like this: <!-- root/src/books/edit.tt --> <head> <title>[% formbuilder.title ...
0
votes
1answer
96 views

Can't create Custom inputs for some (Text, Booleans, …) types, with SimpleForm

I can't figure out why this is not working as it should - or - I'm missing something important ? Here's the list of the mapped types from simple_form / lib / simple_form / form_builder.rb: map_type ...
0
votes
1answer
142 views

How to write a custom SimpleForm Builder to replace <INPUT> by <P>?

Extract of my Gemfile: gem 'rails', '3.0.3' gem 'inherited_resources', '1.2.1' gem 'simple_form', '1.4.0' For any resource, I have 1 view for the 3 actions (new, edit & show). Example: ...
0
votes
1answer
119 views

rails FormBuilder select setting selected value with an “odd” association

I've got this slightly left of center situation that I can't get working. The problem in simplest terms is that I build this select using a has_one/belongs_to association and it populates fine, ...
0
votes
0answers
30 views

suggestion for a form builder with lexevs

I'm looking to integrate a form builder into a lexevs, I'm looking for a form builder will give me a nice GUI for building the form, and skip pattern, data entry storage, form designer. I tried ...
0
votes
1answer
524 views

how to correctly extend form_for / ActionView::Helpers::FormBuilder?

This is similiar to Trying to extend ActionView::Helpers::FormBuilder but I don't want to use :builder => MyThing. I want to extend form builder to add custom methods. This is the current situation: ...
0
votes
1answer
463 views

How to modify Rails 3 form builder

What is the best way to override form_for? For example, in every form_for(@post), I would like to automatically set the <form> id attribute to @post.object_id, and add the following field: ...
0
votes
0answers
520 views

Request For Comment: JQuery Form Builder Plugin [closed]

The JQuery Form Builder Plugin is the first JQuery plugin created by me. Finally, the first demo of the Form Builder went live and hosted in Google App Engine (GAE) at ...
0
votes
1answer
274 views

Ruby on rails form input error formatting

The default behavior for a regular rails form that has errors is to 1) list the errors in a div, with the text coming from errors_for and 2) to place a div around the offending inputs with a red ...
0
votes
1answer
990 views

RoR 3 - overriding the FormBuilder default f.submit into a button

I have a form, and for layout (and future use), i would like to know how to change the default f.submit that generates a: To a html tag that shouldn't give any errors. What i have now is an ...
0
votes
1answer
464 views

haml formbuilder

I'm converting an old program over to haml and I've got a problem with my custom formbuilder. The problem is simply adding a line feed between a fields label and input tag. Here is the original ...
0
votes
2answers
147 views

Why does Perl's CGI::FormBuilder complain about 'No options specified for select'?

I get this error from my CGI script: my_circle.pl: [FormBuilder] Warning: metro: No options specified for 'select' field at /home/ecoopr/ecoopr.com/CPAN/CGI/FormBuilder.pm line 1407, referer: ...
0
votes
2answers
1k views

Trying to extend ActionView::Helpers::FormBuilder

I am trying to DRY up some code by moving some logic into the FormBuilder. After reading the documentation about how to select and alternative form builder the logical solution for me seemed to be ...
0
votes
1answer
346 views

Helper method that encapsulates two form_for blocks

How do you build a helper method that looks like -confirmation_for [@post, @comment] do |f| = f.confirm "Post" %p html here... = f.edit "Edit" and encapsulates two forms like -form_for ...
0
votes
1answer
1k views

Example of a rails custom formbuilder for a radiobutton list

I am looking for an example of how to create a custom form builder for a radio button list bound to an object that acts_as_tree. I already have the code that displays the radio button list but want ...
0
votes
1answer
242 views

content_for Inside Formbuilder

I've got a formbuilder field specifically for doing DateTime using jQuery. What I'd like to do is have the helper able to push content out to my < head > through content_for. Any ideas? Thanks, ...
-1
votes
2answers
132 views

Symfony2 how to render Checkboxes?

I have a formbuilder form with a multiple choice list of countries. When I render them on my form like this: {{ form_widget(edit_form.countries) }} They appear like this: <input ...