datagrid
datagrid copied to clipboard
:muscle: DataGrid for Nette Framework: filtering, sorting, pagination, tree view, table view, translator, etc
Inline editing doesn't work for primary keys which include spaces. In line editing is not displayed. I have a primary key "OP žadatele o ÚL". It resulted into a snippet...
Hi I have question about export. I am using datagrid encapsulated in Control and i need set datasource while Control is rendered. example in Control class : ``` public function...
Hi, I have problem with sorting in DoctrineDataSource. ``` $qb = $this->segmentRepository->getQb(); $grid->setDataSource($qb); $grid->addColumnText('vhCnt', 'admin.grid.segment.vehicleCount') ->setSortable() ->setSortableCallback( function (QueryBuilder $qb, $val) { $qb->leftJoin('q.vehicles', 'vh'); $qb->groupBy('q.id'); $qb->addOrderBy('COUNT(vh.id)', reset($val)); } ) ->setRenderer(...