iCheck
Edit this pageiCheck
The admin comes with iCheck integration. iCheck is a jQuery based checkbox and radio buttons skinning plugin. It provides a cross-browser and accessible solution to checkboxes and radio buttons customization.
The iCheck plugin is enabled on all checkbox
and radio
form elements by default.
Disable iCheck
If you don't want to use iCheck in your admin, you can disable it in configuration.
- YAML
1 2 3 4 5
# config/packages/sonata_admin.yaml
sonata_admin:
options:
use_icheck: false # disable iCheck
Disable iCheck on some form elements
To disable iCheck on some checkbox
or radio
form elements,
set data attribute data-sonata-icheck = "false"
to this form element:
1 2 3 4 5 6 7 8 9 10 11 12 13
use Sonata\AdminBundle\Form\FormMapper;
use Sonata\AdminBundle\Form\Type\ModelType;
protected function configureFormFields(FormMapper $form): void
{
$form
->add('category', ModelType::class, [
'attr' => [
'data-sonata-icheck' => 'false'
]
])
;
}
Note
You have to use false as string! "false"
!
This work, including the code samples, is licensed under a
Creative Commons BY-SA 3.0
license.