We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
we should be able to easily add filters to remove data that dont belong to the form. Filltering data aims to make them 100% relevant.
The idea would be to implement this in the builder. Then every element added by the builder would have a filter StrictField to be added automatically.
StrictField
Consider a form containing firstname and lastname inputs.
firstname
lastname
We expect the following data :
[ firstname: "bart", lastname : "simpsons", age : 12 ]
to become after filtring :
[ firstname: "bart", lastname : "simpsons" ]
The text was updated successfully, but these errors were encountered:
No branches or pull requests
we should be able to easily add filters to remove data that dont belong to the form. Filltering data aims to make them 100% relevant.
The idea would be to implement this in the builder. Then every element added by the builder would have a filter
StrictField
to be added automatically.Consider a form containing
firstname
andlastname
inputs.We expect the following data :
to become after filtring :
The text was updated successfully, but these errors were encountered: