Ajax tab in Zii tabs

I don’t understand this line: ‘AjaxTab’ => array(‘ajax’ => $this->createUrl(’/AjaxModule/ajax/reqTest01’)),

please explain how can i get the tab work in ajax mode.




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

	'tabs' => array(

		'StaticTab 1' => 'Content for tab 1',

		'StaticTab 2' => array('content' => 'Content for tab 2', 'id' => 'tab2'),

		// panel 3 contains the content rendered by a partial view

		'AjaxTab' => array('ajax' => $this->createUrl('/AjaxModule/ajax/reqTest01')),

	),

	// additional javascript options for the tabs plugin

	'options' => array(

		'collapsible' => true,

	),

));



looks quite simple:

third tab with title “AjaxTab” with content that should be loaded with ajax request from url specified as: $this->createUrl(’/AjaxModule/ajax/reqTest01’)

do you have such module/controller/action defined (/AjaxModule/ajax/reqTest01)?