Kuali Announcements logo
Back to Homepage Subscribe to Updates

Announcements

Find all documentation at https://kuali.zendesk.com or click on 'Back to Homepage' above

Labels

  • All Posts
  • Fix
  • New Feature
  • Improvement
  • Announcement
  • Release Updates

Jump to Month

  • April 2026
  • March 2026
  • February 2026
  • January 2026
  • December 2025
  • November 2025
  • October 2025
  • September 2025
  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • January 2024
  • December 2023
  • November 2023
  • October 2023
  • September 2023
  • August 2023
  • July 2023
  • June 2023
  • May 2023
  • March 2023
  • February 2023
  • December 2022
  • November 2022
  • October 2022
  • September 2022
  • August 2022
  • July 2022
  • June 2022
  • May 2022
  • March 2022
  • February 2022
  • January 2022
  • December 2021
  • November 2021
  • October 2021
  • September 2021
  • August 2021
  • July 2021
  • June 2021
  • May 2021
  • April 2021
  • February 2021
  • January 2021
  • December 2020
  • November 2020
  • October 2020
  • September 2020
Powered by

Create yours, for free!

Announcement
4 days ago

Coming Soon: Updates to How Table Gadget Data is Returned Via API

We wanted to make you aware of forthcoming changes to how our Table gadget data is formatted in JSON when returned via the API. If you have existing API integrations that use Kuali table data, we’ve included examples of the updated format below so you can make any necessary updates to ensure your integrations remain unaffected.  These examples include pulling table data from a form document and also pulling table gadget info from the form template. This change is scheduled for deployment on April 5th, 2026 - if you have any questions or concerns, please feel free to submit a support ticket for assistance.

Table Data Example - pulling table data from a document within the App/Form

Current format:

[
  {
    "P3kl9oBsD": 15,
    "zwMPxAgQJ": 70,
    "_rowId": "vOfNps-oKK"
    "_isFooter": true
  },
  {
    "Vg4GSidVc0": "6",
    "UA9HWQj0ZK": "",
    "UNRgEnge7z": "7",
    "pUCZcvnG24": "8"
    "_rowId": "B8vj6XWz9m"
  },
  {
    "Vg4GSidVc0": "9",
    "UA9HWQj0ZK": "",
    "UNRgEnge7z": "10",
    "pUCZcvnG24": "11"
    "_rowId": "_uintwu6RF"
  }
]

Updated format (coming 4/5/26):

{
  "data": [
    {
      "data": {
        "Vg4GSidVc0": "6",
        "UA9HWQj0ZK": "",
        "UNRgEnge7z": "7",
        "pUCZcvnG24": "8"
      },
      "id": "B8vj6XWz9m"
    },
    {
      "data": {
        "Vg4GSidVc0": "9",
        "UA9HWQj0ZK": "",
        "UNRgEnge7z": "10",
        "pUCZcvnG24": "11"
      },
      "id": "_uintwu6RF"
    }
  ],
  "footer": {
    "P3kl9oBsD": {
      "sum": 15
    },
    "zwMPxAgQJ": {
      "product": 70
    }
  }
}

Table Data Example - pulling table gadget configuration info from the App/Form template

Please note the following:

  • Repeaters default to "allowAdditionalRows" to on while Tables defaults to off.
  • Repeaters start without a default row, and that's assumed to be 1. Tables start with an explicit default rows of 2
  • Conditional visibility fields (when pointing at gadgets within the same table), previously had keys like `data..*.` but will change to be `data..data.*.data.

Current format:

{
  "childrenTemplate": [
    {
      "formKey": "N6TZ976AN6",
      "id": "a5FD9TgPi",
      "label": "Field for Calculation (product)",
      "type": "Number"
    },
    {
      "formKey": "G89eMQD5YY",
      "id": "kbo16yrfs",
      "label": "Secondary field for Calculate (sum)",
      "type": "Number"
    }
  ],
  "details": {
    "allowAdditionalRows": {
      "enabled": true
    },
    "calculationFooter": {
      "columns": {
        "a5FD9TgPi": "product",
        "kbo16yrfs": "sum"
      },
      "enabled": true
    },
    "defaultRowCount": 2
  },
  "formKey": "w1PDUvSuwW",
  "id": "259Kcut0r",
  "label": "TABLE-INATOR",
  "type": "Table"
}

Updated format (coming 4/5/26):

{
  "childrenTemplate": [
    {
      "formKey": "N6TZ976AN6",
      "id": "a5FD9TgPi",
      "label": "Field for Calculation (product)",
      "type": "Number"
    },
    {
      "formKey": "G89eMQD5YY",
      "id": "kbo16yrfs",
      "label": "Secondary field for Calculate (sum)",
      "type": "Number"
    }
  ],
  "details": {
    "calculationFooter": {
      "enabled": true,
      "fields": [
        {
          "calcFunction": "product",
          "id": "a5FD9TgPi"
        },
        {
          "calcFunction": "sum",
          "id": "kbo16yrfs"
        }
      ]
    }
  },
  "formKey": "w1PDUvSuwW",
  "id": "259Kcut0r",
  "label": "TABLE-INATOR",
  "type": "Table"
}