I am trying to build a data entry form where I need to have conditional visibility/editability on certain input widgets. But I am unable to find any such features where I can control the visibility or editability based on certain business rules. Is there a way to do this? Or this is not possible at all?
Sections can have conditional visibility.
So you can add the input widget inside a section and show the section only conditionally.
What about conditional editability and conditional mandatory?
Hi @Uttaran, this can be achived by grouping users and passing their IDs as Group IDs to a variable like Array→String array→Multipass attribute.
And now compare this to the loggedin userID which can be found in the variable String→Multipass attribute.
Now you can use a boolean to compare if this matches. If yes, then you can control the conditional visibility
For conditional mandatory, you should use an Action, which makes use of a form by default or also you can write custom TS functions to specificially handle cases. You can make fields required and also have overrides.