- Rails Plugins
- super_in_place_controls
- acts_as_keywordable
- acts_as_noteable
- jakes_toolbox
- OS ActionScript
- BetterFLV
Nov 2: new version of SuperInPlaceControls plugin released with support for Rails 2.1 and 2.3. Also added better jquery support and validation support
| Input Type | FieldName | Value | Code |
|---|---|---|---|
| Regular Text Field | Name | hiiii |
in_place_text_field :product, :title |
| Textarea (empty at first) | Description | fsdfdsf |
in_place_text_field :product, :title |
| Select Tag | Product Type | RubyBliss |
in_place_select :product, :product_type, :choices => %w(Awesomeness Coolness Phatness RubyBliss).map { |e| [e, e] } |
| Radio Collection | Price | 399 |
in_place_radio :product, :price, :choices => %w(199 299 399 499 599 699 799 899 999).map { |e| [e, e] } |
| Checkbox Collection | Categories | Finance, Arts & Entertainment, Culture & Society |
in_place_check_box :product, :category_ids, :choices => Category.find(:all).map { |e| [e.id, e.title] }, :display_text => :collection |
| Date Select | Display Begin Date | Tue Feb 23 00:00:00 -0600 2010 |
in_place_date_select :product, :display_begin |