Situation:
My current links are generated by the following yii methods:
<?php
echo CHtml::link(CHtml::encode($data->name), array('view', 'id'=>$data->idCategory));
?>
What I’d like to do:
Need to build a link structured like this
<a onmouseover="doSomething();" href="http://mysite.com/index.php?r=categories/view">Books</a>
Please advise. Thanks.
The last optional variable is attributes:
You can put everything in that last array that you need
onclickdata-fooidetc.