We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06c5594 commit e31fd2fCopy full SHA for e31fd2f
Client-Side Components/Client Scripts/Date Timestamp - onLoad/clientscript.js
@@ -0,0 +1,5 @@
1
+function onLoad(){
2
+ var now = new Date(); // Shows current date and time
3
+ var nowFormatted = now.toISOString(); // Format : yyyy-MM-ddTHH:mm:ss:sssZ
4
+ g_form.setValue('u_date', nowFormatted); // Replace with your field name
5
+}
0 commit comments