KeyValueFormBundle icon indicating copy to clipboard operation
KeyValueFormBundle copied to clipboard

A form type for managing key-value pairs

Results 9 KeyValueFormBundle issues
Sort by recently updated
recently updated
newest added

I am trying to integrate it with SonataAdmin 4.3 and Symfony 7.0 but there are problems with dependencies

(Second attempt, reliased I didn't even look at last PR) Anyway, quite straightforward, Currently the $return is set based on > $return = $this->useContainerObject ? new KeyValueContainer() : array(); This...

The `getclass($data)` call should be rewritten to `get_class($data)` (cf. https://www.php.net/get-class). The `get_type($data)` call should be rewritten to `gettype($data)` (cf. https://www.php.net/gettype) Otherwise, it would result in the following Fatal Error (for...

Hi, i'm using Symfony 4.3 When i exends the @SonataAdmin/Form/form_admin_fields.html.twig template, i add > {% block burgov_key_value_widget %} > {{- block('sonata_type_native_collection_widget') -}} > {% endblock %} but then there is...

This is not a issue with the bundle itself but I was wondering if you know how to easily render the form as a row instead of a block. This...

Which ORM Column type should I be using to save this to the database ? I tried text and simple_array, but I can't get it to work. When using text,...

Hi, Does KeyValue support nesting? I mean, can it deal with nested key-value array like the following? ``` ["someKey" => ["someOtherKey" => "someOtherValue"], "someKey2" => "someValue2"] ```

Is it possible to make query with QueryBuilder which will mach multivalue assoc field by exact combination of index and value $qb->andWhere()->like()->field("a.testFieldAssoc1")->literal("key1=>value1")->end(); thx, Milos