Can we disable cursor hand for admin grid?

magento

Solution

In your Grid.php define this method empty

public function getRowUrl($row) {
}

Problem

I have created a grid in admin panel. But when mouse pointer hovers over any row, cursor hand shows over it. But I don't have any link for particular row. Can I disable cursor hand for admin grid?

Original source