在gridview的yii2中是搜索结果计数(名为summary
):
在gridview中设置:
'summary' => "Showing {begin} - {end} of {totalCount} items"
显示在表格上方(例如):
Showing `1-2` of `2` items.
但是,如果搜索未给出任何结果,则不会显示summary
。我需要显示(如果搜索为空):
Showing `0-2` of `2` items.
我在设置中找不到如何显示(如果为空搜索)。请帮助。