I have a custom grid, that get data from my custom database.
Right now it is linking is dead and i will get a 404-not found.
Is there a way to remove the link on the rows?
Solved! Go to Solution.
Dear @SuFe,
To remove row url on grid, you just need to edit function getRowUrl in file Grid.php as below:
public function getRowUrl($row){ return false; }
Hello,
You're creating admin grid? You should remove the edit url from your admin grid.
For example, in this tutorial: http://www.boolfly.com/magento-brand-extension-part-2/
You remove public function getRowUrl($row) {}
Dear @SuFe,
To remove row url on grid, you just need to edit function getRowUrl in file Grid.php as below:
public function getRowUrl($row){ return false; }
Hi,
public function getRowUrl() { return "javascript:void(0)"; }
Its also Working