39 function render($request, $row, $column) {
40 $columnId = $column->getId();
41 assert(!empty($columnId));
44 $rowId = $row->getId();
45 $cellId = isset($rowId)?$rowId.
'-'.$columnId:
null;
50 foreach ($templateVars as $varName => $varValue) {
51 $templateMgr->assign($varName, $varValue);
53 $templateMgr->assign(array(
57 'flags' => $column->getFlags(),
60 $template = $column->getTemplate();
61 assert(!empty($template));
62 return $templateMgr->fetch($template);
95 function getCellActions($request, $row, $column, $position = GRID_ACTION_POSITION_DEFAULT) {
96 return $column->getCellActions($request, $row, $position);