I wanted to make my ModelAdmin GridField to be sortable with drag and drop. I tried adding this code:
$gridFieldName = 'Destributors';
$gridField = $form->Fields()->fieldByName($gridFieldName);
if ($gridField) {
$gridField->getConfig()->addComponent(new GridFieldFilterHeader(),new GridFieldSortableRows('SortOrder'));
}
But it seems it is not working. Any idea on how can I implement it?
Any help will greatly appreciated