From 29ea88eb946c081aa05508692b5ab8fdde30ec25 Mon Sep 17 00:00:00 2001 From: Jeremy Stretch Date: Fri, 29 Aug 2025 13:42:55 -0400 Subject: [PATCH] Closes #20115: Support the use of ArrayColumn for plugin tables --- docs/plugins/development/tables.md | 4 ++++ docs/release-notes/version-4.4.md | 1 + 2 files changed, 5 insertions(+) diff --git a/docs/plugins/development/tables.md b/docs/plugins/development/tables.md index 6fe8357b3..c51158849 100644 --- a/docs/plugins/development/tables.md +++ b/docs/plugins/development/tables.md @@ -51,6 +51,10 @@ This will automatically apply any user-specific preferences for the table. (If u The table column classes listed below are supported for use in plugins. These classes can be imported from `netbox.tables.columns`. +::: netbox.tables.ArrayColumn + options: + members: false + ::: netbox.tables.BooleanColumn options: members: false diff --git a/docs/release-notes/version-4.4.md b/docs/release-notes/version-4.4.md index d00820580..ac8886cfa 100644 --- a/docs/release-notes/version-4.4.md +++ b/docs/release-notes/version-4.4.md @@ -39,6 +39,7 @@ A new ConfigContextProfile model has been introduced to support JSON schema vali * [#19945](https://github.com/netbox-community/netbox/issues/19945) - Introduce a new custom script variable to represent decimal values * [#19965](https://github.com/netbox-community/netbox/issues/19965) - Add REST & GraphQL API request counters to the Prometheus metrics exporter * [#20029](https://github.com/netbox-community/netbox/issues/20029) - Include complete representation of object type in webhook payload data +* [#20115](https://github.com/netbox-community/netbox/issues/20115) - Support the use of ArrayColumn for plugin tables ### Plugins