Add comment

This commit is contained in:
flynsarmy 2014-07-30 20:18:12 +10:00
parent 8da4b38672
commit a56022d764
1 changed files with 5 additions and 0 deletions

View File

@ -105,6 +105,11 @@ class DataGrid extends FormWidgetBase
return $result;
}
/**
* Looks at the model for getXXXDataSourceValues or getGridDataSourceValues methods
* to obtain the starting values for the grid.
* @return array
*/
public function getDataSourceValues()
{
$methodName = 'get'.studly_case($this->columnName).'DataSourceValues';