Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

login(baseUrl, username, password, callback)

Description

Gets Login the current logged user in username in Joget Workflow

Parameters

    • baseUrl - base URL of Joget Workflow, e.g., 'http://localhost/jw'
    • username - username for user to login
    • password - password for user to login
    • callback - a callback function after a successful call (optional)

...

loginWithHash(baseUrl, username, hash, callback)

Description

Gets the current logged in username Login the user with hash in Joget Workflow

Parameters

...

logout(baseUrl)

Description

Gets Logs out the current logged in username in Joget Workflow

...

Code Block
languagejs
var cells = FormUtil.getGridCellgetGridCells("gridId.field1");
$(cells).each(function(){
    //do something
});

...