What would be a good technique to partially display and store sensitive information like passwords or api keys?
In "browse" mode: show the decrypted value from database like a*********123
In "edit" mode: possibility to change this value. Ofcourse I want to avoid that when going in edit mode, the actual credential is fully shown just by having linked the dataprovider to that field
I am looking for a generic approach, we have dynamic forms that might contain these fields, so really working with events to show/hide fields or to work with local variables masking the values is not the preferred way
Thanks!