So guys I already spent 2 days in vain and was not able to solve. And now I need your help!
I downloaded the "yiibooster" extension to use one of its features called WIZARD as you can see in the URL below
yiibooster.clevertech.biz/widgets/grouping/view/wizard
Now I followed all the steps of installation
[b]1. Download the YII Bundle
- place that folder in the extension folder
my main.php in config looks like as below>
[/b]:
:
Yii::setPathOfAlias(‘yiibooster’, dirname(FILE).’/../extensions/yiibooster’);
:
:
return array (
‘import’=>array(
'application.models.*',
'application.components.*',
'application.extensions.*',
'editable.*', //easy include of editable classes
'bootstrap.*',
'yiibooster.*'
),
// application components
'components'=>array(
//X-editable config
'editable' => array(
'class' => 'editable.EditableConfig',
'form' => 'bootstrap', //form style: 'bootstrap', 'jqueryui', 'plain'
'mode' => 'popup', //mode: 'popup' or 'inline'
'defaults' => array( //default settings for all editable elements
'emptytext' => 'Click to edit')),
'user'=>array(
// enable cookie-based authentication
'allowAutoLogin'=>true,
),
'bootstrap' => array(
'class' => 'path.alias.to.booster.components.Bootstrap'),
'bootstrap'=>array(
'class'=>'bootstrap.components.Bootstrap',
),
// uncomment the following to enable URLs in path-format
:
:
the main.php file in the Layout looks as below
Yii::app()->bootstrap->registerAllCss();
Yii::app()->clientScript->registerCoreScript(‘jquery’);
Yii::app()->clientScript->registerCoreScript('jquery.ui');
$cs->registerScriptFile($baseUrl.'jquery-1.9.1.js');
$cs->registerScriptFile($baseUrl.'/js/bootbox.js');
$cs->registerScriptFile($baseUrl.'/js/bootstrap.js');
$cs->registerScriptFile($baseUrl.'/js/bootstrap-popover.js');
$cs->registerScriptFile(YiiBase::getPathOfAlias('yiibooster').'/assets/bootstrap-wizard/jquery.bootstrap.wizard.js',CClientScript::POS_END);
:
:
:
:
OK So the problem is I can see the tabs and when I click on the tabs I can see the content per tab but I canot see the progress bar moving right.