Toggle menu

helper.utilHash(input [, prefix])

Provides basic hashing capabilities.

You may also find the hash JavaScript library useful.

Executed

Client-side only.

Arguments

ArgumentTypeDescription
inputString, requiredThe value to hash
prefixString, optionalA prefix for the returned hash. If not provided icm will be used

Example

This function has been added to a script button.

function (helper) {
    var value = helper.utilHash(helper.getFieldValue('TEXT'), 'myHash')
    helper.setFieldValue('HASH', value);
}

Share this page

Facebook icon Twitter icon email icon

Print

print icon