datagrid
datagrid copied to clipboard
:muscle: DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
Ability to define confirmation dialog for group actions. I think it's not currently supported.
``` [ERROR] ./src/Components/DatagridPaginator/templates/data_grid_paginator.latte:12:2 Unexpected '{else}', expecting for element started on line 11 at column 3 (on line 12 at column 2) ```
Hi, I don't know if anyone has solved it, but when a handle method is executed (short, reset filter, pagination) then mass action checkboxes disappear. And a redirect must be...
Based on issue #946 I have prepared the simple HTML input type="date" for date and date range filter. You can try it with my fork of datagrid-skeleton https://github.com/MartinKokesCz/datagrid-skeleton/tree/next
reproduction steps: ``` $grid->setSortable(); $grid->setSortableHandler(); $grid->addColumnDateTime('endTimestamp', 'end_timestamp') ->setFilterDateRange(); ``` When FilterDateRange is included in grid, sort does not work. Alert with `undefined` showed up. when I spect network query params...
Inline add/edit form container can be mapped to object with required properties, so creation of this value object will fail when form controls are set as required but their validation...
Zdravíčko. Používám freezy-bee/doctrine-form-mapper pro vytvoření doctrine entity z dat z formuláře. Příklad použití v presenteru ``` formSuccess(Form $form) : void { $nameEntity = $this->em->getRepository(NameEntity::class)->find($id); $nameEntity = $this->doctrineFormMapper->save($nameEntity, $form); $this->em->persist($nameEntity); $this->em->flush();...
https://github.com/contributte/datagrid/blob/1b0ff6a229d471df21ef7a64132f9ebe76a8d947/src/Column/ColumnDateTime.php#L35 It's possible to set up here timezone? Something like this? $date->setTimezone(new \DateTimeZone('Europe/Prague'));
In DoctrineDataSource the Paginator from Doctrine (Doctrine\ORM\Tools\Pagination\Paginator) is used for situations when JOIN or GROUP BY is used. I assume this is because of the "to-many" relationships - we want...
Hi, I have project with contribute/nettrine and contributte/datagrid. I have numeric column "year". ``` $grid->addColumnNumber('year', 'Year'); $grid->addFilterText('year', 'Year'); ``` When I write some value to filter input and press enter...