Expose whole form value as a data binding
This commit is contained in:
parent
2decf236a4
commit
d7720e2643
|
@ -1837,6 +1837,10 @@
|
||||||
{
|
{
|
||||||
"type": "static",
|
"type": "static",
|
||||||
"values": [
|
"values": [
|
||||||
|
{
|
||||||
|
"label": "Value",
|
||||||
|
"key": "__value"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"label": "Valid",
|
"label": "Valid",
|
||||||
"key": "__valid"
|
"key": "__valid"
|
||||||
|
|
|
@ -59,6 +59,7 @@
|
||||||
...formValue,
|
...formValue,
|
||||||
|
|
||||||
// These static values are prefixed to avoid clashes with actual columns
|
// These static values are prefixed to avoid clashes with actual columns
|
||||||
|
__value: formValue,
|
||||||
__valid: valid,
|
__valid: valid,
|
||||||
__currentStep: $currentStep,
|
__currentStep: $currentStep,
|
||||||
__currentStepValid: $currentStepValid,
|
__currentStepValid: $currentStepValid,
|
||||||
|
|
Loading…
Reference in New Issue