= styled_inputs
+styled_inputs+ adds automated styling of input fields with css classes.
== Resources
Wiki
* http://wiki.pluginaweek.org/Styled_inputs
API
* http://api.pluginaweek.org/styled_inputs
Development
* http://dev.pluginaweek.org/browser/trunk/styled_inputs
Source
* http://svn.pluginaweek.org/trunk/styled_inputs
== Description
Normally, it is difficult to style inputs without adding classes to them so
that you can specify css for each type of input. Since this can become a
tedious manual task, styled_inputs automatically adds a classes to each
input that is generated either by tag or form helpers. The class that is
specified is the type of input being generated.
== Usage
=== Tags
text_field_tag('name') # =>
hidden_field_tag('name') # =>
=== Form helpers
text_field(:person, :name) # =>
hidden_field(:person, :name) # =>
== Dependencies
* Rails 2.0 or later
* set_or_append[http://wiki.pluginaweek.org/Set_or_append]