Displaying 1 result from an estimated 1 matches for "post_book".
Did you mean:
ast_book
2007 Feb 08
2
One question on select tag
Hi
I am now trying to learn some rails tag and encounter one question on
"select" tag.
== Controller
def post_book
@book = Book.new(:type => "CS")
end
== Viewer
<%=select "book", "type", [
[" tale", "T"],
["computer science" ,"CS"]......