Yohann Tilotti

Results 24 comments of Yohann Tilotti

Same issue here. Why do not use the md5 checksum file like file-loader in the File class?

I think the documentation should be modified. Replace: `(int) Tab::getIdFromClassName('ShopParameters');` by `(int) SymfonyContainer::getInstance()->get('prestashop.core.admin.tab.repository')->findOneIdByClassName('ShopParameters');`

Nextcloud 20. Same error if change dav with webdav. But it's the URL on the Nextcloud. Windows OK Android OK Chrome OK Firefox KO

Hi. Your answer isn't here #223 ?

I don't see @yceruto's idea. Maybe he can suggest it?

Same issue here. Real problem to addPart on email

Something like this @tacman & @weaverryan, no? ```php ->add('answer', AnswerAutoCompleteField::class, [ 'autocomplete_url' => $this->router->generate('ux_entity_autocomplete', [ 'alias' => 'answer_auto_complete_field', 'question' => $question->getId(), ]), ]), ``` ```php #[AsEntityAutocompleteField] class AnswerAutoCompleteField extends AbstractType...

@daFish had done most of the work. The problem is only on the preview because ux-dropzone manage already multiple files

If the image is not nullable, better to do: ``` ImageField::new('picture') ->setRequired($pageName !== Crud::PAGE_EDIT) ->setFormTypeOptions($pageName == Crud::PAGE_EDIT ? ['allow_delete' => false] : []) ```