aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/CHANGELOG
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-02-19 18:26:37 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-02-19 18:26:37 +0000
commit9b5ece87d429c9c78528ca5ce470422621a50ce6 (patch)
treedc1885099c466f698cefc9f7a9e6669a87cb727c /actionpack/CHANGELOG
parent9a5d6d6388a20f29c63f85a95d215b0b34ea9cfd (diff)
downloadrails-9b5ece87d429c9c78528ca5ce470422621a50ce6.tar.gz
rails-9b5ece87d429c9c78528ca5ce470422621a50ce6.tar.bz2
rails-9b5ece87d429c9c78528ca5ce470422621a50ce6.zip
Added :order option for date_select that allows control over the order in which the date dropdowns is used and which of them should be used #619 [Tim Bates]
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@695 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/CHANGELOG')
-rw-r--r--actionpack/CHANGELOG5
1 files changed, 5 insertions, 0 deletions
diff --git a/actionpack/CHANGELOG b/actionpack/CHANGELOG
index 8ac4dad690..29a4412c81 100644
--- a/actionpack/CHANGELOG
+++ b/actionpack/CHANGELOG
@@ -1,5 +1,10 @@
*SVN*
+* Added :order option for date_select that allows control over the order in which the date dropdowns is used and which of them should be used #619 [Tim Bates]. Examples:
+
+ date_select("post", "written_on", :order => [:day, :month, :year])
+ date_select("user", "birthday", :order => [:month, :day])
+
* Added ActionView::Base.register_template_handler for easy integration of an alternative template language to ERb and Builder. See test/controller/custom_handler_test.rb for a usage example #656 [Jamis Buck]
* Added AssetTagHelper that provides methods for linking a HTML page together with other assets, such as javascripts, stylesheets, and feeds.