MMpy.FormSetBuilder.build

Syntax

formset_builder.build()

Description

Builds the form set builder and outputs a value of type MMpy.FormSet.

Returns

Type
Description
MMpy.FormSet A built form set object instance.

See Also

MMpy.FormSet

Notes

Once built, the form set can no longer be accessed using the special Python syntax. See the MMpy.FormSet documentation on supported operations.

Examples

class FormSet0(MMpy.FormSetBuilder):
    ...

builder = FormSet0()
...
formset = builder.build()
formset.run()

Resource ID

IDPH_FORMSETBUILDER_BUILD