'Map.id', 'formatter' => 'id'); $cols['Name'] = array('index' => 'Map.name', 'formatter' => 'longname'); $cols['Site Area'] = array('index' => 'SiteArea.name', 'formatter' => 'longname'); $cols['Width'] = array('index' => 'Map.width', 'width' => '50', 'align' => 'right'); $cols['Depth'] = array('index' => 'Map.depth', 'width' => '50', 'align' => 'right'); $cols['Comment'] = array('index' => 'Map.comment', 'formatter' => 'comment'); $jqGrid_options = array('jqGridColumns' => $cols, 'controller' => 'maps', 'caption' => isset($caption) ? $caption : null); if (isset($maps)) { $jqGrid_options += array('custom_ids' => array_map(create_function('$data', 'return $data["id"];'), $maps), 'limit' => 5); } echo $this->element('jqGrid', $jqGrid_options);