1
0
Fork 0
mirror of synced 2024-06-25 17:40:38 +12:00

Expose whole form value as a data binding

This commit is contained in:
Andrew Kingston 2021-12-13 09:34:27 +00:00
parent 989310c29a
commit 6524b871b0
2 changed files with 5 additions and 0 deletions

View file

@ -1837,6 +1837,10 @@
{
"type": "static",
"values": [
{
"label": "Value",
"key": "__value"
},
{
"label": "Valid",
"key": "__valid"

View file

@ -59,6 +59,7 @@
...formValue,
// These static values are prefixed to avoid clashes with actual columns
__value: formValue,
__valid: valid,
__currentStep: $currentStep,
__currentStepValid: $currentStepValid,