Currently I have this php
code:
$this->addColumn('action_urls', array(
'header' => $this->__('Update LP'),
//'index' => 'action_url',
'width' => '100',
'filter' => false,
'sortable' => false,
'type' => 'action',
'actions' => array(
array(
'caption' => Mage::helper('viajemos_general')->__('Update LP'),
'field' => 'action_url',
'onclick' => "showLandingPage('".$this->getUrl('admingeneral/adminhtml_LandingPagesUploader/createUpdateHotelProductLP/', array('id_viajemos' => $this->getId() ))."')"
)
),
)
);
I need to send in the row id in the 'onclick' from the grid, but with "$this->getId()" isn't possible.