Hi, here is how you can add javascript link to your menu.
Use linkOptions.
$this->menu=array(
array(‘label’=>’Add New Record’, ‘url’=>array(‘create’)),
array(‘label’=>’Update Invoice NMB’, ‘url’=>’#', ‘linkOptions’=>array(‘onclick’=>’jsFunctionHere()’)),
);
<script>
function jsFunctionHere(){
..do something here…
}
</script>

Advertisement
Nice……..It was helpul me