How can I insert an attribute in the link generating through following code ? (htmlOptions not working in this case)
<?php $this->widget(‘bootstrap.widgets.BootMenu’, array(
'type'=>'list',
'items'=>array(
array('label'=>'LIST HEADER'),
array('label'=>'Home', 'icon'=>'home', 'url'=>'#', 'htmlOptions'=>array('data'=>'any')),
),
)); ?>