I learn SonataAdminBundle with this tutorial: http://sftuts.com/doc/jobeet/en/the-admin-generator
but instead of:
I have empty values:
Also in form, I have only submit button, but if I click this button then I have error:
PDOException: SQLSTATE[23000]: Integrity constraint violation: 1048 Column 'type' cannot be null
Maybe is better tutorial for SonataAdminBundle?
EDIT:
<?php
//src/SfTuts/JobeetBundle/Admin/CategoryAdmin.php
namespace SfTuts\JobeetBundle\Admin;
use Sonata\AdminBundle\Admin\Admin;
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Datagrid\DatagridMapper;
use Sonata\AdminBundle\Datagrid\ListMapper;
class CategoryAdmin extends Admin
{
protected $list = array(
'id' => array('identifier' => true),
'name',
);
protected $form = array(
'name',
);
protected $filter = array(
'name',
);
}