Page 1 of 1

Re: Need help

Posted: Thu Apr 18, 2019 12:40 am
by amosbatto
If you are using a link field, then ProcessMaker screws up relative links in older versions of ProcessMaker. What version of ProcessMaker are you using?
You can get around this problem by using JavaScript to replace the link:
$("#myLink").find("a").prop("href", "#myAnchor");

The other way to get around this problem is to use a panel field to insert HTML in the Dynaform. You can also use JavaScript to insert the HTML code in the Dynaform, like this:
$("#firstName").closest("div.row").before('<div style="float:right;">\
<a href="#gradeSchool">schooling</a>, <a href="#fathersFullName">parents</a>, <a href="#submit">end</a></div>');