597 search results

…I haven't hit this error, but I noticed it's mentioned in the EasyAdmin docs: https://symfony.com/bundles/EasyAdminBundle/current/dashboards.html#logout-menu-item Let me know if that helps - the docs are still a bit cryptic, but I'm not sure…
weaverryan
weaverryan
Read Full Comment
Hi I have the same problem here. I can't see the "Dashboard" link. And I'm also stucked on the "Welcome to EasyAdmin 4" pag.
Hello ! I intend to take advantage of the black friday offer to subscribe for a month to take advantage of the training on EasyAdmin 3. Do you think that it will be fully published before December 26, 2021?
Hello SymfonyCast team! - didn't find a better place to write my question - so here it is: I'm trying to make a crud for my ProductSupply class with EasyAdmin, but the problem is that on details(show) of the ProductSupply i need to make…
… Yes, the validator is its own component the Symfony Validator. ApiPlatform has it already integrated, the same thing with EasyAdmin but in your Symfony app, if you are not relying on a Symfony Form, then you have to manually use the validator service. It's…
MolloKhan
MolloKhan
Read Full Comment
…new JS (called dashboard.js inside import './bootstrap';) in webpack.config.js and then in DashboardController.php (EasyAdmin) add the assets with -> addWebpackEncoreEntry ('dashboard'). [in configureAssets() method] It worked!. Not override easyadmin's layout.html, but I tried that method and it worked too.
…i was integrate it yesterday 1) need rewrite layout.html.twig 1.1) create folder templates/bundles/Easyadmin/ 1.2) create in this folder layout.html.twig 1.3) copy intire code from vendor/...../views/layout.html.twig yo your 1.2) 1.4) add…
Sorry, I was referring to symfony / ux-chartjs. Can it be integrated into the EasyAdmin 3v dashboard?
Hello ! Anything new on the next upcoming training sessions? I understand that an update on EasyAdmin 3 was planned? Is she coming soon? :)
…using EasyAdmin3 Happy to hear it's useful even if it's not WAY old :). > but the blocks are not next to each other. Do you have a tip what I can do? I'm not familiar with the HTML and layout that EasyAdmin
weaverryan
weaverryan
Read Full Comment
Hey Gaetano S. The `createListQueryBuilder` is not a Doctrine method, it's a EasyAdmin method which creates the query builder for the "List" view. I believe the new name for that method is `createIndexQueryBuilder()` Cheers!
MolloKhan
MolloKhan
Read Full Comment
… Nice find :). So yes, it is compat with Symfony 5 (as you discovered) but no, this tutorial is not going to fit well with EasyAdmin 3. We're currently working on an update, but it's still in development. Many of the concepts will likely…
weaverryan
weaverryan
Read Full Comment
…is working well on a "normal" authentication. But if my user with ROLE_ADMIN has checked "remember_me" checkbox, it is not redirected to easyadmin but to app_homepage like a "normal" user... Could you please help? I tried to trigger this through a listener…
…it useful. As of Symfony 4.3 form theme has also changed (see: https://symfony.com/blog/new-in-symfony-4-3-simpler-form-theming) You can use this 'block_prefix' param in easyadmin under type_options: ` ... - property: 'genusScientists' type_options: ... block_prefix: 'genus_scientists…
…user. I didn't think before I posted the comment ;) EasyAdmin is so powerful when you understood how to override the view and method. BTW with the last version of EasyAdmin you can't override preUpdateEntity, I used to override updateEntity and persistEntity Thanks again…
…to generate admin interface for your Symfony aplpications. But Guard is all about authentication. So, they are not tight to each other and are separate things. And we do have separate screencasts about them. What exactly problem do you have using Guard and EasyAdmin? Cheers!
…milestone but thanks for letting us know what kind of tutorials you would like to see in the future. We *do* consider your opinion when deciding what tutorial is going to be next BTW, do you have any particular problem installing EasyAdmin on SF4? Cheers!
MolloKhan
MolloKhan
Read Full Comment
Hey Brent I think you should set the userId in the `preFlush` action. I believe there is something in the middle of EasyAdmin workflow that is overriding your values Cheers!
MolloKhan
MolloKhan
Read Full Comment
Hey ojtouch Yeah template overriding is a tricky thing, to override bundle templates, you should place it in: `templates/bundles/EasyAdminBundle/default/list.html.twig` and your extends string will be like: `{% extends '@!EasyAdmin/default/list.html.twig' %}` Then it will work as expected. Cheers!
Hem, i forgot... I'm using 'normal forms' to feed my database with each other entities so... Can i tell EasyAdmin to use a custom Controller only for this custom entity form and only this one ?