I want to add a computed request property, which is visible in the request form in the new web portal.
As far as my tests go, only parameters of "user prompts" are visible.
How can this be done?
I want to add a computed request property, which is visible in the request form in the new web portal.
As far as my tests go, only parameters of "user prompts" are visible.
How can this be done?
Have you tried user prompt and read only at the same time ;-)
Thank you for the suggestions.
I tried in some way, yes.
Readonly is not directly selectable in the form for request parameters. It can only changed in the script part. But there is no real trigger to set it.
Data valuation, validation and data dependency script often only react on something.
And if I remember correct, changing it in the init phase of the field scripts, it just hides it.
I think it has to be rendered at least once editable and a follow-up script can set it readonly then.
(I´ve got the workaround to just create own forms/components in angular web portal, but would like to use this as little as possible)
it´s possible to set it in the valuationscript
ParameterSet("myCol").ReadOnly = true
Computation has to be done by data dependency scripts of other columns
it´s possible to set it in the valuationscript
ParameterSet("myCol").ReadOnly = true
Computation has to be done by data dependency scripts of other columns