Dear Abu Ghufran,
I'm using a special function to encrypt and decrypt password. I successfully implement the encrypt using the call function:
$e["on_update"] = array("encrypt", null, true);
And the encrypted password is written successfully in mysql table.
What I'm looking for is how I can use my function "decrypt" to show the real password in another virtual column in the grid.
I highly appreciate your feedback.
Best regards,
2 Answers
You can connect on_data_display event handler and update the field value.
Refer demos/editing/custom-events.php
Your Answer