【发布时间】:2014-03-18 10:49:40
【问题描述】:
我正在尝试为 Yii 框架使用 Jquery Expander 扩展,但我无法使其工作。
这是扩展的链接:
错误:
Error 500: <h1>CException</h1>
<p>Alias "ext.expander.Expander" is invalid. Make sure it points to an existing PHP file and the file is readable. (/Applications/XAMPP/xamppfiles/htdocs/yii/framework/YiiBase.php:322)</p>
查看:
<?php
$this->widget('application.extensions.expander.Expander',array(
'content'=>$data->incidencia_descripcion,
'config'=>array('slicePoint'=>10, 'expandText'=>'Leer más', 'userCollapseText'=>'Ocultar', 'preserveWords'=>false)
));
?>
我也试过了:
$this->widget('ext.expander.Expander',array(
'content'=>$data->incidencia_descripcion,
'config'=>array('slicePoint'=>10, 'expandText'=>'Leer más', 'userCollapseText'=>'Ocultar', 'preserveWords'=>false)
));
?>
但这是可行的:
$this->widget('ext.google.XGoogleChart',array(
'type'=>'pie',
'title'=>'Browser market 2008',
'data'=>array('IE7'=>22,'IE6'=>30.7,'IE5'=>1.7,'Firefox'=>36.5,'Mozilla'=>1.1,'Safari'=>2,'Opera'=>1.4),
'size'=>array(400,300), // width and height of the chart image
'color'=>array('6f8a09', '3285ce','dddddd'), // if there are fewer color than slices, then colors are interpolated.
));
【问题讨论】: