属性で指定する必要{summary}
がありますtemplate
<?php $this->widget('common.ext.bootstrap.widgets.TbGridView', array(
'id'=>'search-by-name-grid',
'type' => 'striped',
'dataProvider'=>$dataProvider,
'template'=>'{summary}{items}{pager}',
'enablePagination' => true,
'columns'=>array(
概要テキストのフォーマットを設定するには
TbGridView
から延長されCGridView
ます。summaryText
したがって、の属性を使用できますCGridView
<?php $this->widget('common.ext.bootstrap.widgets.TbGridView', array(
'id'=>'search-by-name-grid',
'type' => 'striped',
'dataProvider'=>$dataProvider,
'template'=>'{summary}{items}{pager}',
'enablePagination' => true,
'summaryText'=>'Displaying {start}-{end} of {count} results.'
ドキュメントによると、「summaryText」で次のトークンを使用できます
{start}: the starting row number (1-based) currently being displayed
{end}: the ending row number (1-based) currently being displayed
{count}: the total number of rows
{page}: the page number (1-based) current being displayed, available since version 1.1.3
{pages}: the total number of pages, available since version 1.1.3