tekin (owner)

Revisions

gist: 81469 Download_button fork
public
Public Clone URL: git://gist.github.com/81469.git
Embed All Files: show embed
RHTML #
1
2
3
4
5
6
7
8
<%= options_from_collection_for_select(
  @products,
  :id,
  :name,
  nil, # selected value(s)
  lambda{|p| !p.in_stock? } # disabled value(s) identified with a proc
) %>