I want to load my grid class within constructor method of other block.I try this peace of code but don't succeed.
`class Mymodule_Block_Adminhtml_Sales_Order_View_Tabs extends
Mage_Adminhtml_Block_Sales_Order_Abstract
implements Mage_Adminhtml_Block_Widget_Tab_Interface
{
protected $_chat = null;
protected function _construct()
{
parent::_construct();
$class = Mage::getConfig()->getBlockClassName('mymodule/adminhtml_mymodule_edit_tab_tickethistory');
$block = new $class;
$block-> _prepareCollection();
}
} .
I can set phtml file here but my requirement is to load grid class.how can i do that ? Thanks in advance