Hi All
I am developing a system using some data fields which are encrypted with password. I can decrypt ok, and currently using it in a repeat table. I am trying to make the columns sortable via headers. However when it sorts, it's sorting on the encrypted data. How do I force the sort on the decrypted data
Are you decrypting server-side or client-side? If you're doing decrypting client-side I guess you can use a Data Store component to store the data decrypted
P.S.: I think the Data Store component saves the data in the browser's local storage, so depending on your security requirements it might not be appropriate. Alternatively, I think you could use a dmx-repeat and edit the fields directly (e.g. through a Page Flow) instead of using an intermediary Data Store component
Thanks, I'm using the encrypt/decrypt with password so it's serverside. As the data is only displayed in table form and users will not edit it, I'm consideinring using a data store on the client side for the decrypted data and blitz it when the user logs out . From a security perspective it feels ok but need to investigate further