I disabled core css file because it was intercepting with my custom css files:
$cs = Yii::app()->getClientScript();
$cs->scriptMap = array(
'*.css' => false,
);
Now, I need core css files in one view only.
Is there anyway to include those core css files in one view?