doomy / datagrid
There is no license information available for the latest version (1.8) of this package.
DataGrid components
1.8
2026-03-11 08:11 UTC
Requires
- php: >=7.4
- doomy/components: ^2.0.1
- doomy/extended-nette-form: ^v2.3.2|^v3
- doomy/translator: ^1.2.0
- nette/utils: ^v3.1.3|^v4.1.1
Requires (Dev)
- mockery/mockery: ^1.3
- phpunit/phpunit: ^12.5.4
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