Open New Tab In Zii.widgets.jui.cjuitabs

Hello,

I am using zii.widgets.jui.CJuiTabs for creating a tab.

I have fetched employee list as data of this.

Now I want to open a new tab onclick of each employee, without closing current tabs.

how can I do that?

about code its just simple as:




	$this->widget('zii.widgets.jui.CJuiTabs', array(

		'id'=>'teamtab',//'pmsTabs1',

		'tabs'=>array(

			'Team Menbers'=>array('content'=>$view),

		),

		// additional javascript options for the tabs plugin

		'options'=>array(

			'collapsible'=>true,

			'cookie'=> array('name'=>'TabsId'), 

			'spinner'=>'Retriving Data............',

			'cache'=>false,

		),

		));