I have a link that call a specific ajax action and in return it render the partial view on the screen that always update inside the div. Using this normally works but when i am using CHTML class to use static function like below
<?php echo CHTML::linkButton("Like",array("href"=>"http://www.aa.com","id"=>"link-button-shrinked"))?>
then ajax call does not work and gives strange error
<h1>PHP Error [2]</h1>
<p>YiiBase::include(CHTML.php) [<a href='yiibase.include'>yiibase.include</a>]: failed to open stream: No such file or directory (C:\AppServ\www\abc.com\framework\YiiBase.php:418)</p>
my render view function is like this
$this->renderPartial('_character_actions',array("actionRecords"=>$actionRecords),false,true);
if i remove the CHTML function calls then everything works fine....kindly help me.