public
Description: Plugin to automatically give focus to your Rails forms
Homepage: http://www.danielcadenas.com
Clone URL: git://github.com/dcadenas/auto_focusable_forms.git
Click here to lend your support to: auto_focusable_forms and make a donation at www.pledgie.com !
name age message
file .gitignore Thu Oct 09 13:04:22 -0700 2008 Adding .gitignore [dcadenas]
file MIT-LICENSE Wed Oct 08 21:08:16 -0700 2008 first commit [dcadenas]
file README.rdoc Sun Oct 19 01:47:00 -0700 2008 fixed install instructions [dcadenas]
file Rakefile Thu Oct 09 06:08:37 -0700 2008 better spec descriptions and usage of specdoc [dcadenas]
file init.rb Thu Oct 09 04:45:14 -0700 2008 more clarity in form_builder instance extension [dcadenas]
directory lib/ Sat May 30 01:58:56 -0700 2009 Place the cursor at the end when the input has ... [dcadenas]
directory spec/ Sat May 30 01:56:12 -0700 2009 Make tests pass with latest version of rails an... [dcadenas]
README.rdoc

auto_focusable_forms

DESCRIPTION:

Install this plugin to automatically give focus to your forms.

SYNOPSIS:

If you have this two forms in your view…

  form_for @user do |f|
    f.text_field :name
    f.text_field :surname
    fields_for @post do |g|
      g.text_field :title
      g.text_area :content
    end
  end

  form_for @post do |f|
    f.text_field :title
  end

…you’ll see that the name field will have focus. Disabled and readonly fields are ignored.

If you want to disable this behaviour just add :autofocus => false and the form will have the original Rails behaviour. So if for example you want to give focus to the second form in your view you’d just disable autofocus in the first form:

  form_for @user, :autofocus => false do |f|
    f.text_field :name
    f.text_field :surname
  end

  form_for @post do |f|
    f.text_field :title
    f.text_field :content
  end

And now the focus will be in the title field.

See the specs for more examples

INSTALL:

    $ ruby script/plugin install git://github.com/dcadenas/auto_focusable_forms.git

LICENSE:

(The MIT License)

Copyright © 2008 Daniel Cadenas

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the ‘Software’), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED ‘AS IS’, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.