Displaying 20 results from an estimated 4000 matches similar to: "Twice the same code, but only once it seems to work"
2006 Feb 24
1
Help a n00b?
So I''m trying to do that hot new thing with AJAXy forms:
http://idiet.toasterwaffles.com/foods/list
Here''s the relevant code in list.rhtml (for the form portion)
   <tbody>
   <%= render_collection_of_partials "list_stripes", @foods %>
   </tbody>
   <tfoot>
   <tr id="addFood"><%= form_remote_tag( :html =>
2006 Aug 03
5
Rails - forms
Currently I have a registration form that is built like this:
<label for="First name">First name</label>
<%= text_field "user", "first_name" %><br>
<label for="Last name">Last name</label>
<%= text_field "user", "last_name" %><br>
<label for="Email">Email</label>
2006 Jul 21
1
How to dynamically add more rows and submit data
Let''s assume that I am trying to build an application where the user can
enter invoice.
In the app the user can add lines items. Each line item has decription,
date, rate and hours.
When the invoice screen comes up the first time I have one blank row for the
line items.
        <tr>
            <th>Description</th>
            <th>Date</th>
           
2006 Aug 16
4
Overwrite form helper methods and call old ones in new ones?
Hi all
All my forms should look the same, so I think always putting the right 
div etc. tags around them is a violation of the DRY principle.
Until now my forms look like that:
<div class="text_field">
  <label for="news_item_subject">Subject:</label> <%= text_field 
"news_item", "subject" %>
</div>
Now I want the default
2006 Feb 07
3
Newbie help ..
Hi ..
I am new to Rails and it is not clear to me why I am getting the 
following error.  Any help appreciated.
-m.
$cat app/views/admin/new.rhtml
<% @page_title = "New member..." -%>
<%= start_form_tag( :action => ''create'' ) %>
<table>
   <tr>
     <td> First Name: </td>
     <td> <%= text_field(
2006 Apr 25
2
Noob Question: REgarding Forms ( Take 2 )
I''m hoping there''s an easy way to do this.  I''m trying to read options 
from a database, and insert them into form tags.  So for example,
In the Database Table: options
size: 300
type: text_field
maxsize: 300
and I want to create a text_field form tag, with all the appropriate 
options, is there an easy way to do this, other than having the code 
output the HTML
2007 Sep 18
2
Setting default value in text_field/password_field
I am trying to set a default value in a text_field form.  I know how
to do this in html, but is there a way to do
this with form_for
Here is my code
<% form_for :user do |f| -%>
<p><label for="firstname"%>First Name</label><br/>
<%= f.text_field :firstname%></p>
...
<p><label for ="email"%>Email</label><br/>
2006 Apr 08
2
ActionView::Helpers::FormHelper instance methods should take an object reference rather than an object_name.
Hi
ActionView::Helpers::FormHelper methods (e.g. #text_field,
#check_box...) take object_name as an argument. From this argument
they infer a name that is supposed to contains the reference to the
relevant object.
I can''t see why the FormHelper methods were designed that way.
Compared to simply passing them a reference, the current way seems too
complicated and an invitation to problems
2006 Apr 06
3
Inserting parent_id
I have two tables:
- projects
- lines
lines has a foreign key constraint to projects.id
When I''m creating a new line object, the database fails on insert with 
the following error:
"PGError: ERROR:  null value in column "project_id" violates not-null 
constraint"
My code looks like this:
  def create_lines
    @project = params[:id]
    @line =
2006 Jan 05
2
Confused...
Ok,
So, I''ve got two data tables associated through a foreign key.
class Child < ActiveRecord::Base
  belongs_to :parent, :class => Parent, :foreign_key => "parent_id"
  # also has attr1, attr2
end
class Parent < ActiveRecord::Base
  has_many :children, :class => Child, :foreign_key => "parent_id"
end
So, I''m trying to build the new/edit
2009 Nov 12
1
Please help me ------ Mapping an item to article
Hi everybody,
I have a form like this
<h1>New menuitem</h1>
<% form_for(@menuitem) do |f| %>
  <%= f.error_messages %>
  <p>
    <%= f.label :title %><br />
    <%= f.text_field :title %>
  </p>
  <p>
    <%= f.label :alias %><br />
    <%= f.text_field :alias %>
  </p>
  <p>
    <%= f.label
2006 Feb 24
2
Formatting values of numbers using text_field
Anyone have a quick solution on how to format a number in a text_field
tag?
<% text_field "price", "amount" %>  returns 100.0   and it would be nice
if it showed 100.00
Of course, number_with_precision works nicely, but how do you make that
work with text_field?
I thought maybe overriding the getter in the model. However, this means
I would have to bring the helper
2006 Mar 18
9
Using <%= text_field %> within partials is problematic
All,
Thanks for any help in advance.
I have what I think is a very straightforward partial template and I 
can''t figure out why a text_field call within it doesn''t work.
Here is my calling template:  lists.rhtml
<div id="target_lists">
  <%= render(:partial => "target_lists", :collection => @target_lists) 
%>
</div>
In the partial
2006 Jun 27
4
Not Active Record Model Validation
I have a problem with ruby on rails validation
total_book_toy.rhtml
================
<%= text_field ''book1'', ''title1'' %>
<%= text_field ''book2'', ''title2'' %>
I want to validate these text_field so user can''t insert same title.
However, I was stuck how to do it.
Or maybe you have another way how to do it.
2006 Jun 20
2
Validation error_messages_for problem
I am having trouble getting error_messages_for to work. 
My controller(relevant parts) looks like
def configure
    @account = session[:account]
    @user = User.new
  end
 
  def add_new_user_to_account
    @user = User.new(params[:user])
    if @user.valid?
      session[:account].users << @user
    end
      redirect_to :action=> ''configure''
    end
  end
and my
2006 Feb 21
2
ActiveRecord before_ callbacks question
Hi!
I need to set the primary key in a model and postgres table to something 
different than id. View Edit and such works in the scaffolded 
controller. However if I click in the controller below the list of data 
onto New then I get an error message like this:
Showing app/views/admin/_form.rhtml where line #5 raised:
undefined method `nr_before_type_cast'' for
2006 Apr 08
7
text_field and arrays
Hi,
I''m trying to do a bulk update on an array with the helper text_field.
I''m trying to create an inputfield for every object in the array, but 
I''m not getting it right...
example:
class ClassA
     @arrayB[]
end
HTML (code with error):
<% 0.upto(9) do |index| %>
<%= text_field ''ClassA'', ''arrayB[index]'' %>
non
2006 Jul 06
4
ERb question: Embedding <%= %> in helper method calls
I had a situation where I wanted to use a <%= %> (scriptlet) in my 
text_field call to set the "disabled" attribute on the text field, like 
so:
<%= text_field(:current_job, ''removeLinkPos'', :value => '''', :id => 
''offset'', :maxlength => 2, :disabled => <%= sometest ? ''true'' :
2006 Aug 02
7
form_for not working with Markaby
I''m playing around with Markaby and I decided to write a little blog app.
I''m running into issues with forms however. If I use form_for the output of
the form gets swallowed. For example:
form_for :article, @article do |f|
  f.text_field :title
  f.check_box :published
  f.text_area :description
  f.text_field :pub_date
  f.text_area :content
end
gets rendered as an empty form
2013 Dec 10
2
form_tag + fields_for Rails 4
Hi There,
    I''m trying to user fields_for inside a form_tag, but i can''t catch it 
on my controller. 
    I just take some html code off to makes it easy to read
   my view...  
  i''m using campuses_path(current_church, @campus) instead form_for 
@campus, because my route is like 
  resources :campuses, :path => ":church/campuses" 
<%= form_tag