-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
Add support for links_to_form
in form config field params
#280
Comments
We should write this as a document database metadata field. The structure should follow something like: [
(
field_name,
form_name,
[
display_field,
display_field
]
),
] As an alternative to a list of tuples, we can also write them as a dictionary. Pros and cons to both approaches. Dictionaries make enforcing one-field-one-mapping a little easier... {
"field_name": {
"form_name": external_form_name,
"display_fields": [
display_field,
display_field
]
}
} |
Add support for query params to link_to_form logic |
Add push_populate:
current_form_field_1: linked_form_field_1
current_form_field_2: linked_form_field_2
current_form_field_3: linked_form_field_3 These fields must exist in the current form config, but they need not be of any particular input type ... though there may be unexpected behaviors if types do not match. The recommended approach may be that these are hidden fields. I think this all is done in the javascript. |
Add |
Originally posted by @signebedi in #150 (comment)
The text was updated successfully, but these errors were encountered: