Hi All,
I developed a 'vehicle inspection app' that primarily consists of radio buttons and dropdowns. Items that need to be checked are listed, and the user should select whether the item is 'Operational' or 'Requires attention'. In case it 'requires attention' we need an additional section to appear, similar to the example shown below, which provides the option for further action:
I have tried to find examples or tutorials on the web, but have not found a solution to this. My questions are:
1. Would it make sense to display a new EditForm section (using the IF function) when 'requires attention' is selected - and to display the same EditForm if 'requires attention' is selected in any of the quesitons? In that case, how would I track which item the submitted info refers to..
2. Has anyone done something similar and could share how this was done please?
Solved! Go to Solution.
I suggest OnVisible for the screen:
Set(additionalSection, false)
Create that additional section, and go to the properties of each component/control and set the visible to
additionalSection
OnSelect for your button 'NO, REQUIRES ATTENTION' :
Set(additionalSection, true)
Optional - OnSelect for 'YES' button (To have the additional box dissappear):
Set(additionalSection, false)
In addition, if the screen isn't going to be changed, you could use UpdateContext() instead of Set().
Hope that helps!
Sean
I suggest OnVisible for the screen:
Set(additionalSection, false)
Create that additional section, and go to the properties of each component/control and set the visible to
additionalSection
OnSelect for your button 'NO, REQUIRES ATTENTION' :
Set(additionalSection, true)
Optional - OnSelect for 'YES' button (To have the additional box dissappear):
Set(additionalSection, false)
In addition, if the screen isn't going to be changed, you could use UpdateContext() instead of Set().
Hope that helps!
Sean
User | Count |
---|---|
133 | |
132 | |
78 | |
75 | |
70 |
User | Count |
---|---|
210 | |
198 | |
64 | |
62 | |
52 |