doomy/datagrid

There is no license information available for the latest version (1.8) of this package.

DataGrid components

Maintainers

Package info

github.com/doomy/datagrid

pkg:composer/doomy/datagrid

Statistics

Installs: 27

Dependents: 0

Suggesters: 0

Stars: 1

Open Issues: 0

1.8 2026-03-11 08:11 UTC

This package is auto-updated.

Last update: 2026-03-11 08:12:01 UTC


README

Requirements

  • bootstrap
  • font awesome

Usage

public function createComponentClientDataGrid(): IComponent
{
    $dataGrid =  new DataGrid(
        $this->dataGridEntryFactory,
        $this->data,
        DataEntity::class,
        [],
    );
    $dataGrid->setReadOnly(FALSE);
    $dataGrid->onEvent(DataGrid::EVENT_ITEM_SAVED, function($values) {
        $this->data->save(DataEntity::class, $values);
    });
    return $dataGrid;
}

note: readme is work in progress, to be updated