If you don't want to use any of the AJAX features of CListView and thus want to prevent that it publishes any of its asset files, you can extend it and create a sub class like this:
<?php
Yii::import('zii.widgets.CListView');
/**
* SimpleListView
*
* Custom CListView widget that does not publish any assets. They are only
* required for AJAX enabled list views.
*/
class SimpleListView extends CListView
{
/**
* Override CListView::baseScriptUrl to prevent asset publishing in init()
*
* @var mixed URL of published assets. False prevents asset publishing.
*/
public $baseScriptUrl=false;
/**
* Override CListView::cssFile to prevent CSS publishing
*
* @var mixed URL of published assets. False prevents asset publishing.
*/
public $cssFile=false;
/**
* Override CListView::run() to prevent registration of client script.
*/
public function run()
{
echo CHtml::openTag($this->tagName,$this->htmlOptions)."\n";
$this->renderContent();
echo CHtml::closeTag($this->tagName);
}
}
ajaxUpdate and cssFile
How about to set ajaxUpdate and cssFile
@ How about to set ajaxUpdate and cssFile
that's ok , but if you want apply this solution all the site . you 'd better use a subClass of CGridView/CListView .. . as this wike implemented !
If you have any questions, please ask in the forum instead.
Signup or Login in order to comment.