Versions Compared

Key

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

...

What is the format of config.json - the definition for the in each component
Expand
titleWhere are the custom field values defined for each component
title

Custom Field values set in the component card are encrypted and stored locally in an encrypted filecomponents.json file in the component configuration directory.

Code Block
<instance<working root>directory>/IguanaXconfig/configurations/fieldscomps/<component guid>/component.json

See Custom Fields Configuration File for more information.

Expand
Expand
titleThe Count library is a useful library which takes advantage of custom fields to do a custom incrementing counter

The custom fields and default values

This is what the format looks like:

Code Block
languagejson
{
    "fields": [
        {
            "default": "/ff/",
            "name": "Folder",
            "type": "folder"
        },
        {
            "default": "fdsf",
            "name": "File",
            "type": "file"
        },
        {
            "default": "",
            "name": "String",
            "type": "string"
        },
        {
            "default": "1",
            "name": "Number",
            "type": "number"
        },
        {
            "default": "true",
            "name": "Boolean",
            "type": "bool"
        },
        {
            "default": "",
            "name": "Password",
            "type": "password"
        },
        {
            "default": "",
            "name": "Port",
            "type": "port"
        }
    ]
}

See COUNT Library , stored in config.json are stored in the component repository files and checked into Git. See Component Configuration Files.