TableGroupConfig

A JSON object of TableGroups you wish to configure. Each TableGroup can be independently configured. If a TableGroup is not defined then the default options take effect. At the moment this is only used for button visibility. It is currently supported on WEB and HANDHELD devices.

Example

JSON code

Copy
{
  "TableGroupConfig": {
    "PCK1s": {
      "ShowButtons": true,
      "ShowAdd": true,
      "ShowDelete": false,
      "CustomButtons": [
        {
          "Name": "Update Item",
          "Type": "Primary",
          "Key": "Update"
        },
        {
          "Name": "Cancel Item",
          "Type": "Danger",
          "Key": "Cancel"
        }
      ]
    }
  }
}