Displaying 20 results from an estimated 1000 matches similar to: "Style on _fields"
2006 Jun 13
5
Can RoR handle a lot of traffic?
And compared to PHP?
-- 
Posted via http://www.ruby-forum.com/.
2006 May 24
5
Starting on the Ruby Rails path
Hi all, I''m a web designer/-developer. I found Ruby and Ruby on Rails, 
and as I can understand (for now) this is what I''ve been looking for. 
I''m really exited about this. Prior to this I''ve used Lasso and PHP.
But a few questions (sitting on Mac OS 10.4.6). I tried to install 
according to this:
2006 Jun 07
10
RoR with Apache2 - performance?
How is the performance running RoR with Apache2 compared to running it 
with PHP?
-- 
Posted via http://www.ruby-forum.com/.
2006 Jul 14
6
Don''t understand :: in ActionController::Base
Maybe this should apply to Ruby forums directly, but I''ll try here.
I understand the concept of classes and subclasses thanks to the 
excellent "Programming Ruby - The Pragmatic Programmer''s Guide". 
However, I don''t understand what :: signify in terms of inheritance, 
parent and child in e.g.
ActionController::Base
-- 
Posted via http://www.ruby-forum.com/.
2006 Aug 17
4
Migration newbie
In an migration file there is one up and one down method. Below is from 
Agile Web Development with Rails:
class CreateOrderHistories < ActiveRecord::Migration
def self.up
create_table :order_histories do |t|
t.column :order_id, :integer, :null => false
t.column :created_at, :timestamp
t.column :notes, :text
end
end
def self.down
drop_table :order_histories
end
end
Why is there a drop
2006 Jul 07
2
How does layouts work?
When creating a scaffold you get a layout file. How does it work? I 
thought I would find the var @content_for_layout in the controller, but 
I didn''t. Where is layouts defined or controlled?
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 14
13
A good tutorial
Are there any other tutorial than "Agile Web Development with Rails" 
that you can suggest? So far I can''t say that RoR has been easy to 
learn. :-)
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 07
16
How dows RoR work?
This is so frustrating. Is RoR that easy to learn or is it hype or is it 
just me? I wonder how many newbies like me are surfing the docs trying 
to get a clue of the basics. Every tutorial I find is much the same, and 
seems to skip the fundmental parts. How should you understand the Ruby 
API http://api.rubyonrails.org/?
What is < ActionController::Base? Can''t I set a cookie under
2006 Jul 06
5
What is protected?
In http://www.aidanf.net/rails_user_authentication_tutorial there is the 
string/method
protected
in the model. What does it do? Can''t find that in 
http://api.rubyonrails.org/.
-- 
Posted via http://www.ruby-forum.com/.
2006 Jun 07
4
Table names
Can I use the table name "adm_users" (mysql)? Will that give the model 
name "adm_user"? Or should it be "admusers" and "admuser"?
-- 
Posted via http://www.ruby-forum.com/.
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 Jun 07
1
What is class TestController < ActionController::Base
What are the different parts of; class TestController < 
ActionController::Base?
I look at the http://api.rubyonrails.org/ and try to understand but I 
don''t. Could someone give me a hint?
I get the part of Test being the "folder", def and all that, but I can''t 
find an explanation of the basic stuff.
-- 
Posted via http://www.ruby-forum.com/.
2012 Sep 17
1
require current_password to update user information
Rails newbie here, I have been stuck on this for two days and can''t figure 
out why its not working.
I want users to confirm/verify themselves by entering their current/old 
password before any information is updated.
This is what My user_controller update action looks like
I''m currently using rails 3.2 with the basic has_secured_password 
authentication that comes with it.
 def
2006 Jul 17
2
error_messages_for ?
Hi,
I can''t list error_messages in my Form ??, and all the formfields are 
reset ...(I think my redirect :back clean everything, formfield and 
error_messages ...), only my flash[:notice] is ok....
I would like to use the "error_messages_for" tag to add a simple red * 
on my textfiled if a problem occurs ...
thanks for help
arnaud
here are the basics steps to check that
2010 Feb 20
1
formhelper password_field only takes two arguments
When I look at the docs, password_field seems to take 3 arguments.
So when I ''play around" with things and I attempt to pass three
arguments to password_field ... I get an error saying that it only takes
two parameters ("3 for 2")
I am totally lost.
-- 
Posted via http://www.ruby-forum.com/.
-- 
You received this message because you are subscribed to the Google Groups
2007 Sep 30
2
Outputing to the browser, how?
Hello,
I''m writting some helper methods to write forms, so I have this working code:
class TableFormBuilder < ActionView::Helpers::FormBuilder
  ["file_field", "password_field", "text_field"].each do |name|
    define_method(name) do |label, *args|
      @template.content_tag(:tr,
        @template.content_tag(:td,
          @template.content_tag(:label,
2008 Feb 14
4
How do I access this parameter?
Hi,
I have a form for creating users ...
<% form_tag ''userconfirm'' do -%>
<!-- more code -->
<p><label for="user_login">Username</label><br/>
<%= text_field ''user'', ''login''  %></p>
<p><label for="user_password">Password</label><br/>
<%=
2006 Jan 13
2
Change Password with acts_as_authenticated
I want to have a form to change a users password. I can''t figure out 
what the method in the controller should look like. I tried @user.save 
and @user.update_attributes, but can''t get it to work.
My Form:
##############################
<%= start_form_tag :action => "update_password", :id => @user.id %>
<%= password_field ("user",
2006 Mar 29
6
Simply Getting Post Params
I am a complete Rails newbie and am trying to understand how I can 
simply get the data from a password field in a form that is not mapped 
to a field in the database.
The scenario is this. I have a User model that is mapped to a table 
users with the following fields: username, email_address, password and 
join_dt. Following pretty closely to the login section in the Agile Web 
Development with
2007 Apr 16
6
How to use a form.check_box ?
Hey guys,
I''m trying to have a simple webform in my administration section to
add a user. I have the text_fields for adding the user''s name,
password, and password confirmation, but cannot seem to figure out the
checkbox. I want it to be a single checkbox, that if clicked, will set
the database column "access" to be "admin" and if its unchecked, set
it to be