These are resources, links, tutorials and code snippets that can be used for ProcessMaker
The website is hosted on Netlify
This project was created as a guide to help me document code snippets written by myself and other developers that have been useful to me when writing code in ProcessMaker
Built with Hugo
Code snippet showing you how to hide multiple form controls:
//this accepts an array of textbox ids
function hideMultipleElements(arrInput) {
arrInput.forEach(hideElementId);
function hideElementId(item, index) {
return $("#" + item ).hide();
}
}
let formControls = ["textboxId", "textareaId", "gridId"]; //ids of the form controls
hideMultipleElements(formControls); //pass the formControls[] array into the hideMultipleElements() function
You can include the functions you need in your ProcessMaker editor
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
For help with ProcessMaker related issues, you can make a post on the ProcessMaker forum
Some of the javascript functions was written by Oladipupo O. Fredrick
- ProcessMaker Wiki
- Business Process Automation with ProcessMaker 3.1: A Beginner’s Guide by Dipo Majekodunmi on Amazon
A short snippet describing the license (MIT, Apache etc)
MIT © Yourname