Using Yii 1.1.14
Here’s my main configuration file:
'clientScript'=>array(
'packages'=>array(
'jquery'=>array(
'baseUrl'=>'//ajax.googleapis.com/ajax/libs/jquery/2.0.3/',
'js'=>array('jquery.min.js')
),
'jquery.ui'=>array(
'baseUrl'=>'//ajax.googleapis.com/ajax/libs/jqueryui/1.10.3/',
'js'=>array('jquery-ui.min.js'),
),
)
),
Only jquery ui seems to load. I’ve switched their positions, I’ve tried to load the jquery locally instead, no matter what I do, if packages have jquery and jquery.ui, it seems I can’t get both to be loaded.
Any clue?
ps - why am I saying there’re not loading? because I took a look into the page source code and I see no script regarding jquery, while the one regarding jquery ui is there. But this is not relevant, the relevant is we seem to only have ONE script loaded instead of TWO. (regardless the script)
Can anyone confirm this on the latest Yii?