Control visibility (condition to hide)
This is an example of how to use dependant fields and condition to hide in order show the the End-user different controls in the user step based on what has previously been selected.
Create an App with steps and input data
let perishable = [{name: "Ice Cream", category: "perishable"}, {name: "Lettuce", category: "perishable"}];
let nonPerishable = [{name: "Canned Beans", category: "non-perishable"}, {name: "Sugar", category: "non-perishable"}];
return perishable & nonPerishable;Create and connect controls
Test the user step with keep my local changes
Test the user step with discard my local changes
Last updated
Was this helpful?