integrated / formtype-bundle
Integrated FormType Bundle
0.7
2017-05-24 14:33 UTC
Requires
- php: >=5.4
- braincrafted/bootstrap-bundle: ~2.2.0
- friendsofsymfony/jsrouting-bundle: ~1.5
- integrated/asset-bundle: ~0.7
- integrated/content-bundle: ~0.7
- integrated/library: ~0.7
- sp/bower-bundle: ~0.11
- symfony/symfony: ~2.8 || ~3.0
Requires (Dev)
- phpunit/phpunit: ^5.7
- squizlabs/php_codesniffer: ^2.8
This package is auto-updated.
Last update: 2024-10-28 00:39:25 UTC
README
The IntegratedFormTypeBundle provides different Symfony Form Types for the Integrated project.
Documentation
The documentation is stored in the Resources/doc/index.md
.
Installation
The installation instructions can be found in the documentation.
About
The IntegratedFormTypeBundle is part of the Intergrated project.
Elements
integrated_sortable_collection
- javascripts are loaded with integrated asset manager
the sortable items should have an order field with the following configuration
$builder->add('order', 'hidden', [
'attr' => [ 'data-itemorder' => 'collection', ],
]);
or with annotations:
- @Type\Field(type="hidden", options={"attr"={"data-itemorder"="collection"}})