Ejemplo n.º 1
0
 public function index()
 {
     $grid = new Datagrid('testgrid');
     $dataSource = DataList::create("DatagridTest_Person")->sort("Name");
     $grid->setDataSource($dataSource);
     $form = new Form($this, 'gridform', new FieldList($grid), new FieldList(new FormAction('rerender', 'rerender')));
     return array('Form' => $form);
 }