Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
Date Timestamp for the required fields.
1. Create a OnLoad client Script.
2. Select the applicable table.
3. Write appropriate script mentioned.
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
function onLoad(){
var now = new Date(); // Shows current date and time
var nowFormatted = now.toISOString(); // Format : yyyy-MM-ddTHH:mm:ss:sssZ
g_form.setValue('u_date', nowFormatted); // Replace with your field name
}
Loading