In a low code app panel, I would like to show a limited form that only allows the user to see (and edit) a few Dom Fields that are part of a specific DomDef - DomSection.
I only found a means to display the full DomDef (including all sections + fields)
The panel only focusses on a specific set of data within that DomSection, so there is no point in showing everything.
Thank you for the answers.
In my use case I can't really sue the IsVisible property as in some pages / panels I want all the fields to be visible and in others just a few.
Instead of using a Form + update the Field Data via low code I am going for a combo of other features:
- Use Grid components to show limited set of data
- Use an interactive automation script (as was mentioned by Michiel) to change the limited set of data.
Hi Mieke,
For a non-status system DOM definition, you should be able to hide the fields in a form by just setting the 'IsHidden' property on the FieldDescriptor to 'True'.
When using a status system DOM definition, you can do the same with the 'DomStatusFieldDescriptorLink'. There, you can set the 'Visible' bool to 'False'.
This should result in these fields being hidden from the forms. They can still be set/updated in scripts.
Hi Mieke
If I understand it correctly, I believe an Interactive Automation Script can be a possible solution. Did you consider this approach?
Kind regards