Grids
Grids copied to clipboard
How to Sortable grid to Desc
How to change default grid show from asc to desc.
use Grid::SORT_DESC
ex.
(new FieldConfig('xyz'))
->setLabel('xyz')
->setSortable(true)
->setSorting(Grid::SORT_DESC)
Nice.. thq..