PHPackages                             nblum/silverstripe-table-field - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [Utility &amp; Helpers](/categories/utility)
4. /
5. nblum/silverstripe-table-field

AbandonedArchivedSilverstripe-vendormodule[Utility &amp; Helpers](/categories/utility)

nblum/silverstripe-table-field
==============================

Allows to edit tables in wysiwyg style

2.0.1(8y ago)33.4k41MITJavaScript

Since Oct 14Pushed 6y agoCompare

[ Source](https://github.com/nblum/silverstripe-table-field)[ Packagist](https://packagist.org/packages/nblum/silverstripe-table-field)[ Docs](https://github.com/nblum/)[ RSS](/packages/nblum-silverstripe-table-field/feed)WikiDiscussions master Synced 4w ago

READMEChangelogDependencies (1)Versions (6)Used By (1)

silverstripe-table-field
========================

[](#silverstripe-table-field)

Allows to edit tables in wysiwyg style. Saves the result in json.

[![screenshot](assets/screen1.jpg)](assets/screen1.jpg)

Installation
------------

[](#installation)

```
composer require nblum/silverstripe-table-field
```

Usage
-----

[](#usage)

In model

```
private static $db = [
    'Table' => 'Varchar',
];

public function getCMSFields()
{
    $fields = parent::getCMSFields();

    $fields->addFieldsToTab('Root.Main', [
        TableField::create('Table', 'Table')
    ]);

    return $fields;
}

public function Table()
{
    return new ArrayList(array_reduce(json_decode($this->dbObject('Table')->value), function ($carry, $row) {
        $carry = is_array($carry) ? $carry : [];
        return array_merge($carry, [['row' => new ArrayList(array_reduce($row, function($carry, $column) {
            $carry = is_array($carry) ? $carry : [];
            return array_merge($carry, [['column' => $column]]);
        }))]]);
    }));
}

```

In template

```

                $column.RAW

```

Configuration
-------------

[](#configuration)

There are no configuration options

Todos
-----

[](#todos)

- add config options for max rows and cols

###  Health Score

34

—

LowBetter than 75% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community13

Small or concentrated contributor base

Maturity67

Established project with proven stability

 Bus Factor1

Top contributor holds 63.6% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~172 days

Total

4

Last Release

3029d ago

Major Versions

0.1.1 → 2.0.02018-03-15

### Community

Maintainers

![](https://avatars.githubusercontent.com/u/7358767?v=4)[Nico Blum](/maintainers/nblum)[@nblum](https://github.com/nblum)

---

Top Contributors

[![davejtoews](https://avatars.githubusercontent.com/u/9664035?v=4)](https://github.com/davejtoews "davejtoews (7 commits)")[![nblum](https://avatars.githubusercontent.com/u/7358767?v=4)](https://github.com/nblum "nblum (4 commits)")

---

Tags

silverstripecontenttable

### Embed Badge

![Health badge](/badges/nblum-silverstripe-table-field/health.svg)

```
[![Health](https://phpackages.com/badges/nblum-silverstripe-table-field/health.svg)](https://phpackages.com/packages/nblum-silverstripe-table-field)
```

###  Alternatives

[silverstripe/userforms

UserForms enables CMS users to create dynamic forms via a drag and drop interface and without getting involved in any PHP code

1321.1M83](/packages/silverstripe-userforms)[symbiote/silverstripe-gridfieldextensions

A collection of useful grid field components

951.9M264](/packages/symbiote-silverstripe-gridfieldextensions)[silverstripe/tagfield

Tag field for SilverStripe

561.3M50](/packages/silverstripe-tagfield)[lekoala/silverstripe-cms-actions

Add actions to your models in SilverStripe

39317.0k29](/packages/lekoala-silverstripe-cms-actions)[lekoala/silverstripe-softdelete

Soft delete extension for SilverStripe

11212.9k](/packages/lekoala-silverstripe-softdelete)[bummzack/page-blocks

Modular content-blocks for SilverStripe pages

135.3k](/packages/bummzack-page-blocks)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
