Id Name Birthday Action
721 Depressed Dragonfly 6. 4. 1978
722 International Shock - The Card Game 17. 1. 1990
723 Prickly Pollan 28. 9. 1977
724 Amphibious Shopping Summit 21. 3. 1991
725 Creepy Cheetah 11. 1. 1992
726 The Great Katana Starring Mickey Mouse 14. 5. 1930
727 Arrogant Addax 3. 4. 1930
728 Mystic Chef Encounter 8. 4. 1986
729 Clumsy Caterpillar 6. 8. 1932
730 Madden Samurai Marines 28. 1. 1957
731 Stormy Sandpiper 18. 4. 1951
732 Sim Worm vs. Street Fighter 27. 5. 1948
733 Bizarre Insect Struggle 3. 4. 1978
734 Nutty Newt 13. 3. 1984
735 Confused Crab 4. 3. 1966
736 Bonk Bong in Middle-Earth 13. 8. 1974
737 Presidential Square Dancing Simulator 2. 5. 1994
738 Jewish Prison Desperadoes 11. 2. 1983
739 Black Bug 16. 11. 1973
740 Inexpensive Impala 11. 7. 1988
( Items: 721 - 740 from 1020 )
  See the code below 👇 or see GitHub
public function createComponentGrid(): DataGrid
{
	$grid = new DataGrid();

	$grid->setDataSource($this->dibiConnection->select('*')->from('users'));

	$grid->setItemsPerPageList([20, 50, 100], true);

	$grid->addColumnText('id', 'Id')
		->setSortable();

	$grid->addColumnText('email', 'E-mail')
		->setSortable()
		->setFilterText();

	$grid->addColumnText('name', 'Name')
		->setFilterText();

	$grid->addColumnDateTime('birth_date', 'Birthday')
		->setFormat('j. n. Y');

	$grid->setItemsDetail();

	$grid->setTemplateFile(__DIR__ . '/Templates/grid/item-detail-grid.latte');

	return $grid;
}