MMpy.FormSet.get
Syntax
formset.get()
Description
Returns a mapping of field names to the currently set values.
Returns
Type |
Description |
---|---|
dict[str, str] | A dictionary of field names to serialised values. |
Examples
formset = MMpy.FormSet('WS_LOAD_GRIDFILE', '15.0.0.0') formset.open(3) for key, value in formset.get().items(): print(f'{key} = {value}')
Resource ID
IDPH_FORMSET_GET