Class CGridView
CGridView displays a list of data items in terms of a table.
Each row of the table represents the data of a single data item, and a column usually represents an attribute of the item (some columns may correspond to complex expression of attributes or static text).
CGridView supports both sorting and pagination of the data items. The sorting and pagination can be done in AJAX mode or normal page request. A benefit of using CGridView is that when the user browser disables JavaScript, the sorting and pagination automatically degenerate to normal page requests and are still functioning as expected.
CGridView should be used together with a IDataProvider data provider,
preferably a CActiveDataProvider
.
The minimal code needed to use CGridView is as follows:
$dataProvider=new CActiveDataProvider('Post'); $this->widget('zii.widgets.grid.CGridView', array( 'dataProvider'=>$dataProvider, ));
The above code first creates a data provider for the Post
ActiveRecord class. It then uses CGridView to display every attribute in every
Post
instance. The displayed table is equiped with sorting and
pagination functionality.
In order to selectively display attributes with different formats, we may
configure the CGridView::$columns
property. For example, we may specify
only the title
and create_time
attributes to be
displayed, and the create_time
should be properly formatted to show
as a time. We may also display the attributes of the related objects using the
dot-syntax as shown below:
$this->widget('zii.widgets.grid.CGridView', array( 'dataProvider'=>$dataProvider, 'columns'=>array( 'title', // display the 'title' attribute 'category.name', // display the 'name' attribute of the 'category' relation 'content:html', // display the 'content' attribute as purified HTML array( // display 'create_time' using an expression 'name'=>'create_time', 'value'=>'date("M j, Y", $data->create_time)', ), array( // display 'author.username' using an expression 'name'=>'authorName', 'value'=>'$data->author->username', ), array( // display a column with "view", "update" and "delete" buttons 'class'=>'CButtonColumn', ), ), ));
Please refer to CGridView::$columns
for more details about how to configure this
property.
- CComponent
- CBaseController
- CWidget
- CBaseListView
- CGridView
Direct known subclasses
X2GridViewBaseIndirect known subclasses
InlineRelationshipsGridView, X2ActiveGridView, X2ActiveGridViewForSortableWidgets, X2GridView, X2GridViewForSortableWidgets, X2GridViewGenericCopyright: 2008-2013 Yii Software LLC
License: http://www.yiiframework.com/license/
Author: Qiang Xue <qiang.xue@gmail.com>
Since: 1.1
Located at x2engine/framework/zii/widgets/grid/CGridView.php
public
|
#
init( )
Initializes the grid view. This method will initialize required property
values and instantiate |
protected
|
|
protected
|
#
createDataColumn( string $text )
Creates a |
public
|
|
public
|
|
public
|
|
public
|
|
public
|
|
public
|
|
public
|
|
protected
|
#
renderDataCell(
A seam for people extending CGridView to be able to hook onto the data cell rendering process. |
public
boolean
|
|
public
|
|
public
|
renderContent(),
renderEmptyText(),
renderKeys(),
renderPager(),
renderSection(),
renderSummary(),
run()
|
__construct(),
actions(),
getController(),
getId(),
getOwner(),
getViewFile(),
getViewPath(),
render(),
setId()
|
beginCache(),
beginClip(),
beginContent(),
beginWidget(),
createWidget(),
endCache(),
endClip(),
endContent(),
endWidget(),
renderFile(),
renderInternal(),
widget()
|
string |
FILTER_POS_HEADER
|
'header' |
|
string |
FILTER_POS_FOOTER
|
'footer' |
|
string |
FILTER_POS_BODY
|
'body' |
public
array
|
$columns | array() |
#
grid column configuration. Each array element represents the configuration for one particular grid column which can be either a string or an array. When a column is specified as a string, it should be in the format of
"name:type:header", where "type" and "header" are optional. A When a column is specified as an array, it will be used to create a grid
column instance, where the 'class' element specifies the column class name
(defaults to |
public
array
|
$rowCssClass | array('odd','even') |
#
the CSS class names for the table body rows. If multiple CSS class names are
given, they will be assigned to the rows sequentially and repeatedly. This
property is ignored if rowCssClassExpression is set. Defaults to
|
public
string
|
$rowHtmlOptionsExpression |
|
#
a PHP expression that is evaluated for every table body row and whose result is
used as additional HTML attributes for the row. The expression should return an
array whose key value pairs correspond to html attribute and value. In this
expression, you can use the following variables:
CComponent::evaluateExpression() .
A PHP expression can be any PHP code that has a value. To learn more about what an expression is, please refer to the php manual. |
public
boolean
|
$showTableOnEmpty | true |
#
whether to display the table even when there is no data. Defaults to true.
The |
public
mixed
|
$ajaxUpdate |
|
#
the ID of the container whose content may be updated with an AJAX response. Defaults to null, meaning the container for this grid view instance. If it is set false, it means sorting and pagination will be performed in normal page requests instead of AJAX requests. If the sorting and pagination should trigger the update of multiple containers' content in AJAX fashion, these container IDs may be listed here (separated with comma). |
public
string
|
$updateSelector | '{page}, {sort}' |
#
the jQuery selector of the HTML elements that may trigger AJAX updates when they are clicked. These tokens are recognized: {page} and {sort}. They will be replaced with the pagination and sorting links selectors. Defaults to '{page}, {sort}', that means that the pagination links and the sorting links will trigger AJAX updates. Tokens are available from 1.1.11 Note: if this value is empty an exception will be thrown. Example (adding a custom selector to the default ones): ... 'updateSelector'=>'{page}, {sort}, #mybutton', ... |
public
string
|
$ajaxUpdateError |
|
#
a javascript function that will be invoked if an AJAX update error occurs. The function signature is<span
class="php-keyword1">function</span>(xhr, textStatus, errorThrown,
errorMessage)
Example (add in a call to CGridView): ... 'ajaxUpdateError'=>'function(xhr,ts,et,err,id){ $("#"+id).text(err); }', ... |
public
string
|
$ajaxVar | 'ajax' |
#
the name of the GET variable that indicates the request is an AJAX request
triggered by this widget. Defaults to 'ajax'. This is effective only when |
public
mixed
|
$ajaxUrl |
|
#
the URL for the AJAX requests should be sent to. |
public
string
|
$ajaxType |
|
#
the type ('GET' or 'POST') of the AJAX requests. If not set, 'GET' will be
used. You can set this to 'POST' if you are filtering by many fields at once and
have a problem with GET query string length. Note that in POST mode direct links
and |
public
string
|
$beforeAjaxUpdate |
|
#
a javascript function that will be invoked before an AJAX update occurs. The
function signature is |
public
string
|
$afterAjaxUpdate |
|
#
a javascript function that will be invoked after a successful AJAX response
is received. The function signature is |
public
string
|
$selectionChanged |
|
#
a javascript function that will be invoked after the row selection is
changed. The function signature is |
public
integer
|
$selectableRows | 1 |
#
the number of table body rows that can be selected. If 0, it means rows
cannot be selected. If 1, only one row can be selected. If 2 or any other
number, it means multiple rows can be selected. A selected row will have a CSS
class named 'selected'. You may also call the JavaScript function |
public
string
|
$baseScriptUrl |
|
#
the base script URL for all grid view resources (eg javascript, CSS file, images). Defaults to null, meaning using the integrated grid view resources (which are published as assets). |
public
string
|
$cssFile |
|
#
the URL of the CSS file used by this grid view. Defaults to null, meaning using the integrated CSS file. If this is set false, you are responsible to explicitly include the necessary CSS file in your page. |
public
string
|
$nullDisplay | ' ' |
#
the text to be displayed in a data cell when a data value is null. This property will NOT be HTML-encoded when rendering. Defaults to an HTML blank. |
public
string
|
$blankDisplay | ' ' |
#
the text to be displayed in an empty grid cell. This property will NOT be
HTML-encoded when rendering. Defaults to an HTML blank. This differs from |
public
string
|
$loadingCssClass | 'grid-view-loading' |
#
the CSS class name that will be assigned to the widget container element when the widget is updating its content via AJAX. Defaults to 'grid-view-loading'. |
public
string
|
$filterSelector | '{filter}' |
#
the jQuery selector of filter input fields. The token '{filter}' is recognized and it will be replaced with the grid filters selector. Defaults to '{filter}'. Note: if this value is empty an exception will be thrown. Example (adding a custom selector to the default one): ... 'filterSelector'=>'{filter}, #myfilter', ... |
public
string
|
$filterCssClass | 'filters' |
#
the CSS class name for the table row element containing all filter input fields. Defaults to 'filters'. |
public
string
|
$filterPosition | 'body' |
#
whether the filters should be displayed in the grid view. Valid values include:
|
public
|
$filter |
|
#
the model instance that keeps the user-entered filter data. When this
property is set, the grid view will enable column-based filtering. Each data
column by default will display a text field at the top that users can fill in to
filter the data. Note that in order to show an input field for filtering, a
column must have its |
public
boolean
|
$hideHeader | false |
#
whether to hide the header cells of the grid. When this is true, header cells will not be rendered, which means the grid cannot be sorted anymore since the sort links are located in the header. Defaults to false. |
public
boolean
|
$enableHistory | false |
#
whether to leverage the DOM history object. Set this property to true to persist state of grid across
page revisits. Note, there are two limitations for this feature:
|
$dataProvider,
$emptyCssClass,
$emptyTagName,
$emptyText,
$enablePagination,
$enableSorting,
$htmlOptions,
$itemsCssClass,
$pager,
$pagerCssClass,
$summaryCssClass,
$summaryTagName,
$summaryText,
$tagName,
$template
|
$actionPrefix,
$skin
|
public
boolean
|
$hasFooter |
#
Whether the table should render a footer. This is true if any of the |
public
|
$formatter |
#
The formatter instance. Defaults to the 'format' application component. |
$controller,
$id,
$owner,
$viewPath
|