cancel
Showing results for 
Search instead for 
Did you mean: 

Entity Fields - Agent Performance Management

AnjaniAL
Explorer
0 Kudos
94

Can we dynamically set fields to readonly based on the value selected in a prior field, which is a pick list?

Accepted Solutions (1)

Accepted Solutions (1)

PhillipButts
Product and Topic Expert
Product and Topic Expert

You can use an Entity Edit to prevent changes once the record has been created.

The entity edit expression would look something like:

if(old_BrokerType == BrokerType && //Value that you want base the read only attribute on

old_BrokerRef1 != BrokerRef1). //Value you want to make ready only

return true

else return false

Hope this helps!

Phillip Butts

AnjaniAL
Explorer
0 Kudos
Thank you for your answer.

Answers (0)