You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Generates a list of options from a value to text (or dForm Object) mapping for elements of type *select*, *radiobuttons*
223
223
or *checkboxes*.
224
224
@@ -261,7 +261,7 @@ Generates:
261
261
262
262
// TODO
263
263
264
-
**caption***{String|Object}*
264
+
**caption***{String|Object}*<br />
265
265
Adds a caption to the element. The type used for it depends on the element type:
266
266
* A *legend* on *fieldset* elements
267
267
* A *label* next to *radio* or *checkbox* elements
@@ -293,7 +293,7 @@ Generates:
293
293
<legend type="ui-dform-legend">Address</label>
294
294
</fieldset>
295
295
296
-
**url**
296
+
**url**<br />
297
297
TODO
298
298
299
299
### Add your own
@@ -304,21 +304,21 @@ You can add your own subscribers
304
304
305
305
Currently there are two types of special subscribers
306
306
307
-
**\[pre\]***{Object}*
307
+
**\[pre\]***{Object}*<br />
308
308
Functions registered with this name will be called before any processing occurs and get the original options passed.
309
309
310
-
**\[post\]***{Object}*
310
+
**\[post\]***{Object}*<br />
311
311
Functions registered with this name will be called after all processing is finished and also get the original
312
312
options passed.
313
313
314
314
## Plugin methods
315
315
316
316
Default
317
317
318
-
run
319
-
append
320
-
attr({Object})
321
-
ajax
318
+
run<br />
319
+
append<br />
320
+
attr({Object})<br />
321
+
ajax<br />
322
322
323
323
## jQuery UI
324
324
@@ -338,54 +338,54 @@ ajax
338
338
339
339
**0.2.0**
340
340
341
-
Full QUnit test suite
342
-
Improved documentation
343
-
Changed API
344
-
Added deferred loading of subscribers
341
+
-Full QUnit test suite
342
+
-Improved documentation
343
+
-Changed API
344
+
-Added deferred loading of subscribers
345
345
346
346
**0.1.4**
347
347
348
-
Merged pull request [#30](https://github.com/daffl/jquery.dform/pull/30): Wrap 'type' as an array so it doesn't break jQuery 1.7.1's $.inArray() when running in IE8
349
-
Added first QUnit tests
350
-
Fixed issue #22 with jQuery UI accordion causing problems with captions
351
-
Removed placeholder plugin. Use HTML 5 placeholders or the jQuery [placeholder plugin](https://github.com/danielstocks/jQuery-Placeholder)
352
-
Updated documentation engine to DocumentJS and build system to StealJS
353
-
Merged pull request [#19](https://github.com/daffl/jquery.dform/pull/19) and [#20](https://github.com/daffl/jquery.dform/pull/20), support to set up a validate options for validate() in "form" type
354
-
Merged pull request [#26](https://github.com/daffl/jquery.dform/pull/26) to support HTML 5 input types
355
-
Added simple getting started example
348
+
-Merged pull request [#30](https://github.com/daffl/jquery.dform/pull/30): Wrap 'type' as an array so it doesn't break jQuery 1.7.1's $.inArray() when running in IE8
349
+
-Added first QUnit tests
350
+
-Fixed issue #22 with jQuery UI accordion causing problems with captions
351
+
-Removed placeholder plugin. Use HTML 5 placeholders or the jQuery [placeholder plugin](https://github.com/danielstocks/jQuery-Placeholder)
352
+
-Updated documentation engine to DocumentJS and build system to StealJS
353
+
-Merged pull request [#19](https://github.com/daffl/jquery.dform/pull/19) and [#20](https://github.com/daffl/jquery.dform/pull/20), support to set up a validate options for validate() in "form" type
354
+
-Merged pull request [#26](https://github.com/daffl/jquery.dform/pull/26) to support HTML 5 input types
355
+
-Added simple getting started example
356
356
357
357
**0.1.3**
358
358
359
-
Created some public [JSFiddles for trying the plugin](http://jsfiddle.net/user/Daff/fiddles)
360
-
Created [jQuery.dForm Google Group](http://groups.google.com/group/jquery-dform)
361
-
Added <form> type, unified <buildForm> usage
362
-
Fixed [issue #14](https://github.com/daffl/jquery.dform/issues/closed#issue/14), setting type attribute properly in IE
363
-
Added <getValueAt>
364
-
Added <i18n> support using the [jQuery globalize](https://github.com/jquery/jquery-global) plugin
365
-
Fixed minor bugs in dform plugins
359
+
-Created some public [JSFiddles for trying the plugin](http://jsfiddle.net/user/Daff/fiddles)
360
+
-Created [jQuery.dForm Google Group](http://groups.google.com/group/jquery-dform)
361
+
-Added *form* type, unified *buildForm* usage
362
+
-Fixed [issue #14](https://github.com/daffl/jquery.dform/issues/closed#issue/14), setting type attribute properly in IE
363
+
-Added *getValueAt*
364
+
-Added *i18n* support using the [jQuery globalize](https://github.com/jquery/jquery-global) plugin
365
+
-Fixed minor bugs in dform plugins
366
366
367
367
**0.1.2**
368
368
369
-
Added <dformAttr> to add HTML attributes to elements
370
-
Moved <placeholder> into a separate plugin
371
-
Added <reset> button type
372
-
Added dynamic form definition loading by passing a URL to the <buildForm> plugin function
373
-
Added <ajax> subscriber using the <jQuery form plugin at http://jquery.malsup.com/form>
374
-
Added the <defaultType> method to create any HTML element without having to register a type
375
-
Improved build process
369
+
-Added *dformAttr* to add HTML attributes to elements
370
+
-Moved *placeholder* into a separate plugin
371
+
-Added *reset* button type
372
+
-Added dynamic form definition loading by passing a URL to the *buildForm* plugin function
373
+
-Added *ajax* subscriber using the *jQuery form plugin at http://jquery.malsup.com/form*
374
+
-Added the *defaultType* method to create any HTML element without having to register a type
375
+
-Improved build process
376
376
377
377
**0.1.1**
378
378
379
-
Separated type and subscriber functions
380
-
Added types <file>, <container>, <hidden>, <accordion>, <checkboxes> and <radiobuttons>
381
-
Added auto class generation based on element type
382
-
Finished jQuery UI <accordion> and unified with <tabs> usage
383
-
Switched documentation to <Natualdocs at http://naturaldocs.org>
384
-
Added build.xml for generating documentation and minifying JavaScript
379
+
-Separated type and subscriber functions
380
+
-Added types *file*, *container*, *hidden*, *accordion*, *checkboxes* and *radiobuttons*
381
+
-Added auto class generation based on element type
382
+
-Finished jQuery UI *accordion* and unified with *tabs* usage
383
+
-Switched documentation to *Natualdocs at http://naturaldocs.org*
384
+
-Added build.xml for generating documentation and minifying JavaScript
0 commit comments