Hi,
in backend list view i have a field set with Typography JGrid -> Reordering.
I need restriction with more than one parameter, so i try to remove this field with BeforeRender plugin/field in some cases. I get the field to not display, but also if unset full array of this field, the function of reordering still appears (but without to render field).
Is there a solution to disable also the reordering function?
I have tried with:
$fields['art_ordering']->display = 0;
$fields['art_ordering']->state = 0;
$fields['art_ordering']->typo = '';
$fields['art_ordering']->authorised = '';
…
unset($fields['art_ordering']);
Thank you.