Hi,
i can't get this to work after i have follow this guide:
http://blog.espocrm.com/development/...dynamic-forms/
what i am trying to do is to hide all fields i want by default (Array,Enum and etc...)
and to show one by one if...
i have created array field "products" one of the array option called "seo".
so i want to show another array field(named "seotype") if seo was selected.
and thats not working.
i can't get this to work after i have follow this guide:
http://blog.espocrm.com/development/...dynamic-forms/
what i am trying to do is to hide all fields i want by default (Array,Enum and etc...)
and to show one by one if...
i have created array field "products" one of the array option called "seo".
so i want to show another array field(named "seotype") if seo was selected.
and thats not working.
Code:
"formDependency": { "products": { "map": { "seo" : [ { "action": "show", "fields": ["seotype"] } ] }, "default": [ { "action": "hide", "fields": ["seotype"] } ] } }
Comment