Magento – Disable grid row click, admin

gridmagento2

How do I disable grid click? So I can only click "Edit" link.
enter image description here

I've tried changing the function in vendor/magento/module-catalog/Block/Adminhtml/Product/Grid.php to return false; but it didn't work.

Help is very appreciated.

Best Answer

To remove row url on grid, you need to edit function getRowUrl in file Grid.php as below:

public function getRowUrl($row){
       return false;
}