Axel Guckelsberger
Axel Guckelsberger
@rallek updated proposal above
Don't understand the question - please clarify. As described above, I suggest to show a modal window with the required instructions on demand.
good point! would be even better to include it there, because a new item action only for some instructions would "pollute" the UI
I mentioned "bootstrap table" because I recently compared several components and used this one for a quite huge project. Thus I am pretty familar with it - and it offers...
Also introduce granular Twig blocks for improved support of partial overriding in Zikula 2.0.4+.
Example: MWC
The DSL already contains a `CalculatedField` which is not used yet though. Thinking this further we could add support even for arbitrary expressions. http://symfony.com/doc/current/components/expression_language/index.html https://www.goetas.com/blog/how-to-use-external-services-with-the-symfony-validator/
Note: the generated `CategoryHelper` already provides a `hasMultipleSelection` method which allows to decide for each entity and property/registry whether multi selection should be possible or not.
I'll first need to verify that this is properly considered at all places, e.g. quick navigation form type and other form types.
Example for overriding the method: ``` public function hasMultipleSelection($objectType = '', $registry = '') { if ('person' === $objectType) { return 'MySpecial' === $registry; } return parent::hasMultipleSelection($objectType, $registry); } ```...