Skip to content

This is a documentation of code snippets, links and resources that I have found useful when writing code in ProcessMaker. It also includes my own tutorials on ProcessMaker.

Notifications You must be signed in to change notification settings

aghwotu/how-to-processmaker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

39 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

This is a documentation of code snippets, links and resources that I have found useful when writing code in ProcessMaker. It also includes my own tutorials on ProcessMaker.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published