When registering a row in the grid, I want to save one of the fields encrypted, but when it is viewed in the grid it must be decrypted. it's possible? thank you
1 Answers
Hello,
Yes, this can be achieved by using on_update event handler where you can update field by passing to encrypt function.
And in on_data_display event, you can call decrypt function, which is called before loading data on grid.
Usage of both events are mentioned in docs:
Your Answer