/**
  * Retrieve row click URL
  *
  * @param Varien_Object $row
  *
  * @return string
  */
 public function getRowUrl($row)
 {
     if ($this->getIsChooserMode()) {
         return null;
     }
     return $this->getUrl('*/*/edit', array('id' => $row->getSegmentId()));
 }