Skip to content

Latest commit

 

History

History
63 lines (41 loc) · 2.17 KB

README.md

File metadata and controls

63 lines (41 loc) · 2.17 KB

How to ProcessMaker

These are resources, links, tutorials and code snippets that can be used for ProcessMaker

The website is hosted on Netlify

Motivation

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

Screenshots

image

Tech/framework used

Built with Hugo

Code Example

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

Installation

How to use?

You can include the functions you need in your ProcessMaker editor

Contributing

Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.

Support

For help with ProcessMaker related issues, you can make a post on the ProcessMaker forum

Credits

Some of the javascript functions was written by Oladipupo O. Fredrick

Useful Resources

License

A short snippet describing the license (MIT, Apache etc)

MIT © Yourname