@@ -214,7 +214,7 @@ Field Options
214
214
allow_add
215
215
~~~~~~~~~
216
216
217
- **type **: ``Boolean `` **default **: ``false ``
217
+ **type **: ``boolean `` **default **: ``false ``
218
218
219
219
If set to ``true ``, then if unrecognized items are submitted to the collection,
220
220
they will be added as new items. The ending array will contain the existing
@@ -235,7 +235,7 @@ client side. For more information, see the above example and :ref:`cookbook-form
235
235
allow_delete
236
236
~~~~~~~~~~~~
237
237
238
- **type **: ``Boolean `` **default **: ``false ``
238
+ **type **: ``boolean `` **default **: ``false ``
239
239
240
240
If set to ``true ``, then if an existing item is not contained in the submitted
241
241
data, it will be correctly absent from the final array of items. This means
@@ -280,7 +280,7 @@ you'd need to at least pass the ``choices`` option to the underlying type::
280
280
prototype
281
281
~~~~~~~~~
282
282
283
- **type **: ``Boolean `` **default **: ``true ``
283
+ **type **: ``boolean `` **default **: ``true ``
284
284
285
285
This option is useful when using the `allow_add `_ option. If ``true `` (and
286
286
if `allow_add `_ is also ``true ``), a special "prototype" attribute will be
@@ -319,7 +319,7 @@ as :ref:`cookbook-form-collections-new-prototype`.
319
319
prototype_name
320
320
~~~~~~~~~~~~~~
321
321
322
- **type **: ``String `` **default **: ``__name__ ``
322
+ **type **: ``string `` **default **: ``__name__ ``
323
323
324
324
If you have several collections in your form, or worse, nested collections
325
325
you may want to change the placeholder so that unrelated placeholders are not
@@ -359,7 +359,7 @@ The default value is ``array()`` (empty array).
359
359
error_bubbling
360
360
~~~~~~~~~~~~~~
361
361
362
- **type **: ``Boolean `` **default **: ``true ``
362
+ **type **: ``boolean `` **default **: ``true ``
363
363
364
364
.. include :: /reference/forms/types/options/_error_bubbling_body.rst.inc
365
365
@@ -379,6 +379,6 @@ Field Variables
379
379
============ =========== ========================================
380
380
Variable Type Usage
381
381
============ =========== ========================================
382
- allow_add ``Boolean `` The value of the `allow_add `_ option.
383
- allow_delete ``Boolean `` The value of the `allow_delete `_ option.
382
+ allow_add ``boolean `` The value of the `allow_add `_ option.
383
+ allow_delete ``boolean `` The value of the `allow_delete `_ option.
384
384
============ =========== ========================================
0 commit comments