You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the form data as changed by the user, is only available for the @onSubmit callback (unless you are in mutable mode). We could yield this.effectiveData though to give access to that data to the template, for e.g. dynamic forms that render/unrender new form elements based on the user input.
The text was updated successfully, but these errors were encountered:
* added yielding of current form data. #379 along with tests and updated test app
* updating documentation for usage
* using 'data' instead of 'effectiveData' to be consistent with field data yield'
* resolved typing error. however getting ELIFECYCLE error on lint
* linting passed.
* changed yielded data to not be optional
* changeset
---------
Co-authored-by: Simon Ihmig <[email protected]>
Currently, the form data as changed by the user, is only available for the
@onSubmit
callback (unless you are in mutable mode). We could yieldthis.effectiveData
though to give access to that data to the template, for e.g. dynamic forms that render/unrender new form elements based on the user input.The text was updated successfully, but these errors were encountered: