I needed some help changing the date and Time format.
This is what it currently displays: 16/02/2022 09:28:47
This is what I want: 16 February 2022 9:28AM
Here is the code that I'm currently using:
fd.spRendered(function() {
fd.field('Time_Stamp').value = new Date().toLocaleString();
fd.field('Time_Stamp').disabled = true
});