Yii cgridview显示两次摘要文本


yii cgridview displays summaryt text twice

在我的新 yii 应用程序中,它显示为,

Displaying 1-3 of 1 result.|Displaying 1-3 of 3 results.
<div class="summary">Displaying 1-3 of 1 result.|Displaying 1-3 of 3 results.</div>

我不知道这部分是如何复制的,这是我的代码。

<?php $this->widget('zii.widgets.grid.CGridView', array(
    'id'=>'data-grid',
    'dataProvider'=>$model->search(),
    'filter'=>$model,
    'columns'=>array(
        array(
            'name' => 'id',
            'header' => 'No.',
            'htmlOptions' => array('style' => 'width: 5%;'),
        ),
        array(
            'name' => 'type',
            'value' => '$data->getType($data->type)'
        ),
        array(
            'name' => 'incidentType',
            'value' => '$data->getIncidentType($data->incidentType)'
        ),

尝试在 cgridview 选项中添加此选项:

'summaryText'=> "Displaying {start} - {end} of {count} result."