0 follower

CDataColumn

Package zii.widgets.grid
Inheritance class CDataColumn » CGridColumn » CComponent
Since 1.1
Source Code framework/zii/widgets/grid/CDataColumn.php
CDataColumn represents a grid view column that is associated with a data attribute or PHP expression.

Either name or value should be specified. The former specifies a data attribute name, while the latter a PHP expression whose value should be rendered instead.

The property sortable determines whether the grid view can be sorted according to this column. Note that the name should always be set if the column needs to be sortable. The name value will be used by CSort to render a clickable link in the header cell to trigger the sorting.

Public Properties

Hide inherited properties

PropertyTypeDescriptionDefined By
cssClassExpression string a PHP expression that is evaluated for every data cell and whose result is used as the CSS class name for the data cell. CGridColumn
filter mixed the HTML code representing a filter input (eg a text field, a dropdown list) that is used for this data column. CDataColumn
filterCellContent string Returns the filter cell content. CDataColumn
filterHtmlOptions array the HTML options for the filter cell tag. CGridColumn
footerCellContent string Returns the footer cell content. CGridColumn
footerHtmlOptions array the HTML options for the footer cell tag. CGridColumn
grid CGridView the grid view object that owns this column. CGridColumn
hasFooter boolean whether this column has a footer cell. CGridColumn
headerCellContent string Returns the header cell content. CDataColumn
headerHtmlOptions array the HTML options for the header cell tag. CGridColumn
htmlOptions array the HTML options for the data cell tags. CGridColumn
id string the ID of this column. CGridColumn
name string the attribute name of the data model. CDataColumn
sortable boolean whether the column is sortable. CDataColumn
type string the type of the attribute value. CDataColumn
value string a PHP expression that will be evaluated for every data cell using evaluateExpression and whose result will be rendered as the content of the data cell. CDataColumn
visible boolean whether this column is visible. CGridColumn

Public Methods

Hide inherited methods

MethodDescriptionDefined By
__call() Calls the named method which is not a class method. CComponent
__construct() Constructor. CGridColumn
__get() Returns a property value, an event handler list or a behavior based on its name. CComponent
__isset() Checks if a property value is null. CComponent
__set() Sets value of a component property. CComponent
__unset() Sets a component property to be null. CComponent
asa() Returns the named behavior object. CComponent
attachBehavior() Attaches a behavior to this component. CComponent
attachBehaviors() Attaches a list of behaviors to the component. CComponent
attachEventHandler() Attaches an event handler to an event. CComponent
canGetProperty() Determines whether a property can be read. CComponent
canSetProperty() Determines whether a property can be set. CComponent
detachBehavior() Detaches a behavior from the component. CComponent
detachBehaviors() Detaches all behaviors from the component. CComponent
detachEventHandler() Detaches an existing event handler. CComponent
disableBehavior() Disables an attached behavior. CComponent
disableBehaviors() Disables all behaviors attached to this component. CComponent
enableBehavior() Enables an attached behavior. CComponent
enableBehaviors() Enables all behaviors attached to this component. CComponent
evaluateExpression() Evaluates a PHP expression or callback under the context of this component. CComponent
getDataCellContent() Returns the data cell content. CDataColumn
getEventHandlers() Returns the list of attached event handlers for an event. CComponent
getFilterCellContent() Returns the filter cell content. CDataColumn
getFooterCellContent() Returns the footer cell content. CGridColumn
getHasFooter() Returns whether this column has a footer cell. This is determined based on whether footer is set. CGridColumn
getHeaderCellContent() Returns the header cell content. CDataColumn
hasEvent() Determines whether an event is defined. CComponent
hasEventHandler() Checks whether the named event has attached handlers. CComponent
hasProperty() Determines whether a property is defined. CComponent
init() Initializes the column. CDataColumn
raiseEvent() Raises an event. CComponent
renderDataCell() Renders a data cell. CGridColumn
renderFilterCell() Renders the filter cell. CGridColumn
renderFooterCell() Renders the footer cell. CGridColumn
renderHeaderCell() Renders the header cell. CGridColumn

Protected Methods

Hide inherited methods

MethodDescriptionDefined By
renderDataCellContent() Renders the data cell content. CGridColumn
renderFilterCellContent() Renders the filter cell content. CGridColumn
renderFooterCellContent() Renders the footer cell content. CGridColumn
renderHeaderCellContent() Renders the header cell content. CGridColumn

Property Details

filter property (available since v1.1.1)
public mixed $filter;

the HTML code representing a filter input (eg a text field, a dropdown list) that is used for this data column. This property is effective only when CGridView::filter is set. If this property is not set, a text field will be generated as the filter input; If this property is an array, a dropdown list will be generated that uses this property value as the list options. If you don't want a filter for this data column, set this value to false.

filterCellContent property read-only (available since v1.1.16)
public string getFilterCellContent()

Returns the filter cell content. This method will return the filter as is if it is a string. If filter is an array, it is assumed to be a list of options, and a dropdown selector will be rendered. Otherwise if filter is not false, a text field is rendered.

headerCellContent property read-only (available since v1.1.16)
public string getHeaderCellContent()

Returns the header cell content. This method will render a link that can trigger the sorting if the column is sortable.

name property
public string $name;

the attribute name of the data model. Used for column sorting, filtering and to render the corresponding attribute value in each data cell. If value is specified it will be used to rendered the data cell instead of the attribute value.

See Also

sortable property
public boolean $sortable;

whether the column is sortable. If so, the header cell will contain a link that may trigger the sorting. Defaults to true. Note that if name is not set, or if name is not allowed by CSort, this property will be treated as false.

See Also

type property
public string $type;

the type of the attribute value. This determines how the attribute value is formatted for display. Valid values include those recognizable by CGridView::formatter, such as: raw, text, ntext, html, date, time, datetime, boolean, number, email, image, url. For more details, please refer to CFormatter. Defaults to 'text' which means the attribute value will be HTML-encoded.

value property
public string $value;

a PHP expression that will be evaluated for every data cell using evaluateExpression and whose result will be rendered as the content of the data cell. In this expression, you can use the following variables:

  • $row the row number (zero-based).
  • $data the value provided by grid view object for the row.
  • $this the column object.
Type of the $data depends on data provider which is passed to the grid view object. In case of CActiveDataProvider, $data will have object type and its values are accessed like $data->property. In case of CArrayDataProvider or CSqlDataProvider, it will have array type and its values must be accessed like $data['property'].

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.

Method Details

getDataCellContent() method (available since v1.1.16)
public string getDataCellContent(integer $row)
$row integer the row number (zero-based)
{return} string the data cell content.
Source Code: framework/zii/widgets/grid/CDataColumn.php#144 (show)
public function getDataCellContent($row)
{
    
$data=$this->grid->dataProvider->data[$row];
    if(
$this->value!==null)
        
$value=$this->evaluateExpression($this->value,array('data'=>$data,'row'=>$row));
    elseif(
$this->name!==null)
        
$value=CHtml::value($data,$this->name);
    return 
$value===null $this->grid->nullDisplay $this->grid->getFormatter()->format($value,$this->type);
}

Returns the data cell content. This method evaluates value or name and renders the result.

getFilterCellContent() method (available since v1.1.16)
public string getFilterCellContent()
{return} string the filter cell content
Source Code: framework/zii/widgets/grid/CDataColumn.php#101 (show)
public function getFilterCellContent()
{
    if(
is_string($this->filter))
        return 
$this->filter;
    elseif(
$this->filter!==false && $this->grid->filter!==null && $this->name!==null && strpos($this->name,'.')===false)
    {
        if(
is_array($this->filter))
            return 
CHtml::activeDropDownList($this->grid->filter$this->name$this->filter, array('id'=>false,'prompt'=>''));
        elseif(
$this->filter===null)
            return 
CHtml::activeTextField($this->grid->filter$this->name, array('id'=>false));
    }
    else
        return 
parent::getFilterCellContent();
}

Returns the filter cell content. This method will return the filter as is if it is a string. If filter is an array, it is assumed to be a list of options, and a dropdown selector will be rendered. Otherwise if filter is not false, a text field is rendered.

getHeaderCellContent() method (available since v1.1.16)
public string getHeaderCellContent()
{return} string the header cell content.
Source Code: framework/zii/widgets/grid/CDataColumn.php#122 (show)
public function getHeaderCellContent()
{
    if(
$this->grid->enableSorting && $this->sortable && $this->name!==null)
        return 
$this->grid->dataProvider->getSort()->link($this->name,$this->header,array('class'=>'sort-link'));
    elseif(
$this->name!==null && $this->header===null)
    {
        if(
$this->grid->dataProvider instanceof CActiveDataProvider)
            return 
CHtml::encode($this->grid->dataProvider->model->getAttributeLabel($this->name));
        else
            return 
CHtml::encode($this->name);
    }
    else
        return 
parent::getHeaderCellContent();
}

Returns the header cell content. This method will render a link that can trigger the sorting if the column is sortable.

init() method
public void init()
Source Code: framework/zii/widgets/grid/CDataColumn.php#84 (show)
public function init()
{
    
parent::init();
    if(
$this->name===null)
        
$this->sortable=false;
    if(
$this->name===null && $this->value===null)
        throw new 
CException(Yii::t('zii','Either "name" or "value" must be specified for CDataColumn.'));
}

Initializes the column.