open source projects

by Flvorful.com

SuperInPlaceControls

download & install docs demo

Latest news

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

Links:

SuperInPlaceControls: Demo

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

custom_helpers examples

demo 2