mirror of
https://github.com/github/rails.git
synced 2026-01-23 13:28:04 -05:00
Added support for automatic id-based indexing for lists of items #532 [dblack]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@495 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
This commit is contained in:
@@ -1,5 +1,19 @@
|
||||
*SVN*
|
||||
|
||||
* Added support for automatic id-based indexing for lists of items #532 [dblack]. Example:
|
||||
|
||||
<% @students.each do |@student| %>
|
||||
<%= text_field "student[]", "first_name", :size => "20" %>
|
||||
<%= text_field "student[]", "last_name" %>
|
||||
<%= text_field "student[]", "grade", :size => "5" %>
|
||||
<% end %>
|
||||
|
||||
...would produce, for say David Black with id 123 and a grace of C+:
|
||||
|
||||
<input id="student_123_first_name" name="student[123][first_name]" size="20" size="30" type="text" value="David" />
|
||||
<input id="student_123_last_name" name="student[123][last_name]" size="30" type="text" value="Black" />
|
||||
<input id="student_123_grade" name="student[123][grade]" size="5" type="text" value="C+" />
|
||||
|
||||
* Added :application_prefix to url_for and friends that makes it easier to setup Rails in non-vhost environments #516 [Jamis Buck]
|
||||
|
||||
* Added :encode option to mail_to that'll allow you to masquarede the email address behind javascript or hex encoding #494 [Lucas Carlson]
|
||||
|
||||
Reference in New Issue
Block a user