Plugins

The plugins site is currently in development.

We've been looking to provide a higher-quality, spam-free experience at the plugins site for some time, and a major error on our part forced us to shut down the current site before we could put the new one in place. We are developing a new site, and you can follow along with its development on GitHub. For more information about this transition, including steps you can take as a plugin author to prepare, please read our post about what's going on.

Releases for Field Plug-in


Field Plug-in 0.9.2

* Fixed code for jQuery v1.3.x support
* Fixed bug #6333 - setValue when value is typeof "number" and it is 0 (zero)
* Fixed bug in autoAdvance where it wasn't correctly advancing to the next field
* Fixed bug in createCheckboxRange where it where the high value wouldn't always be unchecked/checked

Field Plug-in 0.9.1

- Optimized the createCheckboxRange to reduced complexity and code size. Functionality has not changed.

Field Plug-in 0.9

- Removed createCheckboxRange custom event, this fixes problems with older jQuery versions that have problems with the trigger
- Changed the limitSelection() function to use an options argument, instead of all the individual arguments

Field Plug-in 0.8.1

Revision History
v0.8.1
- createCheckboxRange() no longer breaks the chain
- Added callback to createCheckboxRange() (the trigger() method
does not execute correctly in jQuery v1.1.2, so this functionality
doesn't work in that version.)
- Added configurable setting for the [SHIFT] key bind to the
createCheckboxRange().
- Added the $.Field.setProperty() and getProperty() methods

Field Plug-in 0.8

Revision History
v0.8
- Fixed "bug in checkbox range" (http://plugins.jquery.com/node/1642)
- Fixed "Bug when setting value on a select element and the select is empty"
(http://plugins.jquery.com/node/1281)

v0.7.1
- Changed a comma in code to a semi-colon in a variable definition line
- Fixed code to work in min mode
- Fixed bug in hashForm() that would not see struct keys with empty values

Field Plug-in 0.7

- Added tabIndex related function (getTabIndex, moveNext, movePrev, moveIndex)

Field Plug-in 0.6

v0.6
- Fixed bug in the $.formHash() where the arrayed form elements would not correctly report their values.
- Added the $.createCheckboxRange() which allow you to select multiple checkbox elements by doing a [SHIFT] + click.

v0.5
- Added $.limitSelection() method for limiting the number of selection in a select-multiple of checkbox array.

v0.4.1
- Moved $.type and $.isType into private functions
- Rewrote $type() function to use instanceof operator

Field Plug-in 0.4

New in v0.4:

* Added the formHash() method:

Examples:
$("#formName").formHash();
Returns a hash map of all the form fields and their values.

$("#formName").formHash({"name": "Dan G. Switzer, II", "state": "OH"});
Returns the jQuery chain and sets the fields "name" and "state" with the values "Dan G. Switzer, II" and "OH" respectively.

Field Plug-in 0.3

Plug-in still in beta, but is tested enough it should be production ready.