Page 1 of 1

Plumsail Forms Fill Date Field

Posted: 02 Nov 2018
by kkreitzer
Hello!

I am using Plumsail Forms 1.2.2 to create a public web form that feeds into flow. I am trying to fill a DateTime field automatically with the current date/time, but I have had no success. I have tried following the other topics in the forum, but it seems that nothing will work. Is the process different in Plumsail Forms compared to Forms Designer?

Thanks for the help!
~Kayne

Re: Plumsail Forms Fill Date Field

Posted: 05 Nov 2018
by AlexZver
Hi Kayne,

Please, useĀ  this forum for Plumsail Forms instead next time, it will make it easier for you and others when looking for answers.

Did you try this code to populate the DateTime field?

Code: Select all

fd.rendered(function(){
   fd.field("DateTimeInternalName").value = new Date();   
});