Static Public Member Functions | |
static | getDefaultMetadata () |
Definition at line 37 of file AccountsModalListView.php.
static getDefaultMetadata | ( | ) | [static] |
Returns meta data for use in automatically generating the view. The meta data is comprised of columns. The parameters match the parameters used in CGridView. See link below for more information. http://www.yiiframework.com/doc/api/1.1/CGridView/
The below example is a simple listview with the 'id' and 'name' attributes The 'name' column has a hyperlink to the detail view for that record.
<?php $metadata = array( array( 'class' => 'CDataColumn', 'name' => 'id', ), array( 'class' => 'CLinkColumn', 'header' => Zurmo::t('Core', 'Name'), 'labelExpression' => '$data->name', 'urlExpression' => 'Yii::app()->createUrl("/{$this->grid->getOwner()->getModule()->getId()}/{$this->grid->getOwner()->getId()}/details", array("id" => $data->id))', ) ); ?>
Reimplemented from ListView.
Definition at line 39 of file AccountsModalListView.php.