ListView: How to remove delete bulk action?

@bf.ts90, I am continue discussing.
@BrozTechnologies, thank you. You make a good offer. May be the next step will be:
custom/include/MVC/View/views/view.list.php
with code:

require_once('include/MVC/View/views/view.list.php');
class CustomViewList extends ViewList{
    public function preDisplay()
    {
        parent::preDisplay();
        $this->lv->delete = false;
    }
}

This code will work for all modules and be safe for upgrade.

2 Likes