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. nblum/silverstripe-table-field

AbandonedArchivedSilverstripe-vendormodule

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

Allows to edit tables in wysiwyg style

2.0.1(8y ago)33.4k↓100%41MITJavaScript

Since Oct 14Pushed 6y ago1 watchersCompare

[ 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 2mo 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 77% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity24

Limited adoption so far

Community14

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

2978d ago

Major Versions

0.1.1 → 2.0.02018-03-15

### Community

Maintainers

![](https://www.gravatar.com/avatar/ca7a06d9f914820cdf4c8837b2090dd478888f3f1efa89a5afdfc41257f7a0b5?d=identicon)[nblum](/maintainers/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/cms

The SilverStripe Content Management System

5163.4M1.3k](/packages/silverstripe-cms)[silverstripe/admin

SilverStripe admin interface

262.6M325](/packages/silverstripe-admin)[nobrainerweb/silverstripe-content-blocks

Split your page content into manageable blocks/sections of content, each with their own template

301.5k](/packages/nobrainerweb-silverstripe-content-blocks)[unclecheese/mock-dataobjects

Allows DataObjects to self-populate intelligently using fake data

183.7k](/packages/unclecheese-mock-dataobjects)[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)
