HI
I am using the Javascript(see previous discussion) to get the device time into the field. It works fine on the form but when I open the save PDF in the repository the time is not there (the field is blank). What could be causing that?
The code I am using is:
$(document).ready(function(){
function setcurrenttime (){
var currentdate=new Date();
var datetimenow=(currentdate.getHours())+ ":"
+ currentdate.getMinutes();
$('#Field280').val(datetimenow);
}
setcurrenttime();
});
Note: I had similar issue before with loo-kup DB value in the field which was fixed with applying lf hot fix. My current version is Laserfiche Forms Version 9.1.1.1522 (that has the hot fix applied).