Tagged Questions
The form-builder tag has no wiki summary.
4
votes
4answers
3k views
Rails AJAX: My partial needs a FormBuilder instance
So I've got a form in my Rails app which uses a custom FormBuilder to give me some custom field tags
<% form_for :staff_member, @staff_member, :builder => MyFormBuilder do |f| %>
[...]
...
2
votes
2answers
1k views
How can I insert a record using Form Builder and PL/SQL?
I'm slowly learning SQL and how to use form builder 6. The situation is I have a simple table named 'players' within the table I have three columns:
player_no (primary key)
position
goals
Within ...
1
vote
1answer
157 views
Symony2 Form Templating Error - Variable “widget” does not exist
I am trying to alter the date_widget using symfony2 and twig. I would like to display just the year.
After reading Symfony 2 date input with only year selector and the symfony2 book chapter on ...
1
vote
0answers
160 views
Using custom form builders with nested models in Ruby on Rails
I'm using nested model form technique from Railscast 197 (ASCIIcast here). But I'm running into a problem with my setup, I need to use a custom form builder for one of my nested models' partials. ...
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
746 views
fields_for form builder object is nil
Any way to access a nested form_bulder.object?
## controller
@project = Project.new
@project.tasks.build
form_for(@project) do |f|
f.object.nil? ## returns false
fields_for :tasks do |builder|
...
0
votes
1answer
128 views
Text fields from array in Rails
I'm trying to generate a set of text fields for an array using Rails 2.3. I have an array in my controller (which is not part of the model), and I'd like to make a text field for each entry. The array ...
0
votes
0answers
136 views
Oracle form builder linux
I download oracle form builder for linux , but the following error occurred , when I try
To run in :
~/OraHome_1/bin$ ./frmbld
There was an error trying to initialize the HPI library.
Please ...
0
votes
0answers
29 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
2answers
479 views
fields_for and wrong number of arguments (0 for 1) error
Amateur rails programmer struggling to use the fields_for form builder. My rails application (on v=2.3.11) tracks laboratory protocols and the animals used on those protocols (their weights, etc).
...
0
votes
2answers
224 views
How do I get the HTML 'name' attribute a rails form builder will generate for a certain field?
When you've got a form field such as this:
<%= f.text_field :last_name %>
it will generate this in HTML:
<input id="person_last_name" name="person[last_name]" size="30" type="text" />
...
0
votes
2answers
1k views
Drupal 6 Hide Revision Information
I'm trying to hide "Revision information" from my users who do not understand what that is in relation to this content type. I've read numerous posts online that suggest anything from changing a ...