Share ideas, ask questions, and get feedback about developing for ProcessMaker
Forum rules: Please post new questions under "Developing processes & programming" for ProcessMaker 2 or 3.
By HelenG
#784014
Hello,

I try to change the format of one of my date fields with the code from http://wiki.processmaker.com/index.php/ ... alue.28.29 and it doesn't work.
I don't know where is the mistake...
I appreciate any help.

/*CODE*/
function twoDigits(num) {
return (num < 10 ? "0" : "") + num;
}
function change(){

var d = new Date(getField("start_date").value);
var s = twoDigits(d.getMonth()) + '-' + twoDigits(d.getDate()) + '-' + d.getFullYear();
getField("end_date_of_trial").value = s;
}

leimnud.event.add(getField("start_date"), 'change', change);
/*END_OF_CODE*/


Thanks in advance.
Want to create your own meme coin?

In the world of cryptocurrencies, a unique and exc[…]

The market for cryptocurrencies is demonstrating a[…]

What's SAP FICO?

Embarking on a dissertation can be one of the most[…]

Hello. For rental housing, there are software solu[…]