Sergey Kornilov 11/29/2023 | |
Use 'View as' type Custom and write your own code there that formats the date in the required way: |
J
|
Ja author 11/30/2023 |
Hello Sergey, before I post a message on the forum, I will first search here in the forum, but also in the help files of phprunner if there is anything I could use. Of course I had already found the link you gave me. I was actually looking for a piece of code (Java script or PHP) with which I can see the correct date notation in a grid (code for example in the before display event). Still, thanks for your help. |
C
|
cristi 11/30/2023 |
As admin said you can do it in view as custom: $date = DateTime::createFromFormat('d-m-Y', $value); |
J
|
Ja author 12/1/2023 |
Thank you!, this is exactly what I was looking for. |