これはばかげた質問かもしれません..しかし、フィルターとCListViewウィジェットを調整して、以下のように適切に表示しようとしています
ここにコードがあります
<div class="row-fluid span12">
<div class="span4">
<?php $box = $this->beginWidget(
'bootstrap.widgets.TbBox',
array(
'title' => 'Advanced Search',
'headerIcon' => 'icon-th-list',
'htmlOptions' => array('class' => 'bootstrap-widget-table')
)
);?>
<?php $this->renderPartial('_search',array('model'=>$model,)); ?>
<?php $this->endWidget(); ?>
</div>
<div class="span8">
<?php
$this->widget('zii.widgets.CListView',
array(
'dataProvider'=>$model->search(),
'ajaxUpdate' => true,
'enablePagination'=>true,
'itemView'=>'_list', // refers to the partial view named '_post'
'sortableAttributes'=>array(
'Price',
'Year',
'Lenght'
),
)
);
?>
</div>
</div>
添付の写真の左側のようなものを実際に生成します
CListView ウィジェットがフィルター内に配置されていることを確認するにはどうすればよいですか? そして、「1-29 件の結果を表示しています」というテキストを削除し、フィルターを一番上に配置しますか?