367 search results for EasyAdmin

Hey @Igor You just need to update the resource key value. It should point to your EasyAdmin controller(s) folder or file (depending if you pretend to have more than one controller to manage EasyAdmin actions) and it ...
MolloKhan
MolloKhan
Read Full Comment
Design Config Security Setup

... tough stuff. Let's start with design. Right now, in the upper left corner, it says, "EasyAdmin"... which is probably not what I want. Like most stuff, this can be changed in the config. Add a site_name key set to AquaNote ...

4:16
The workaround for the new welcome page isn't working anymore. I'm getting 404 errors for fonts used by easyadmin. It's searching for fonts in the public/bundles/easyadmin/fonts folder for fonts that are actually in the ...
Hey |mention:76903| Are you trying to use Turbo with EasyAdmin? I'm afraid EasyAdmin has not added support for Turbo yet, perhaps they will in the future. Cheers! ...
MolloKhan
MolloKhan
Read Full Comment
Nevermind, I just found this https://symfony.com/blog/easyadmin-3-is-released This raise another question, is this course still good for EasyAdmin 3? Thanks ...
Alexandru
Alexandru
Read Full Comment
In case anyone else has trouble finding the EasyAdmin documentation icon, it was removed from the Profiler bar in EasyAdmin 4.4.2 per this issue: `https://github.com/EasyCorp/EasyAdminBundle/pull/5453` So.. if ...
Hey Tupolev > Registered user console (manage own user profile, manage own places, place_pictures) Unless you mean to do this via EasyAdmin too - this sounds good. Because EasyAdmin is something internal and meant ...
Field Configurator Logic

... EasyAdmin gives us is something called a FieldDto, which, as you can see, contains all the info about this field, like its value, formatted value, form type, template path and much more. One thing you might have noticed ...

8:32
Auto-complete Association Field Controlling the Query

... second wildcard: Oh, and about that  . I added this, in part, to show off the fact that when you render things in EasyAdmin, you can include HTML in most situations. That's normally not how Symfony and Twig work, but ...

5:36
Hello CRUD Controller

The true reason to use EasyAdmin is for its CRUD controllers. Each CRUD controller will give us a rich set of pages to create, read, update, and delete a single entity. This is where EasyAdmin shines, and the next few ...

6:05
Hey Colin, I can't say for sure... but I would like to know why do you include bootstrap to your admin? Well, first of all, EasyAdmin already has bootstrap included, it's based on the latest bootstrap. So, you probably ...
Hi victor yes i try work around with symfony and easyadmin, is great :). But i dont know why i still got missing messager ?_? how can overrider translation von easyadmin in 'de' order fix this missing ...
Tien dat L.
Tien dat L.
Read Full Comment
... Hi, I don't see dashboard as yours. I see "Welcome to EasyAdmin 4" - in the center of page without aside "Dashboard" and user's login (user icon and user name). Could you check? I have EasyAdmin 4.0.3 Thank you.
{% extends '@EasyAdmin/default/list.html.twig' %}
// ... lines 2 - 8
{% block global_actions %}
{{ parent() }}
{% if easyadmin_action_is_enabled_for_list_view('export', _entity_config.name) %}
<div class="button-action">
<a class="btn btn-primary" href="{{ path('easyadmin', _request_parameters|merge({ action: 'export' })) }}">
<i class="fa fa-download"></i>
Export
</a>
</div>
{% endif %}
{% endblock global_actions %}
See Code Block in Script
{% extends '@EasyAdmin/default/list.html.twig' %}
// ... lines 2 - 8
{% block global_actions %}
// ... lines 10 - 11
{% if easyadmin_action_is_enabled_for_list_view('export', _entity_config.name) %}
<div class="button-action">
<a class="btn btn-primary" href="{{ path('easyadmin', _request_parameters|merge({ action: 'export' })) }}">
<i class="fa fa-download"></i>
Export
</a>
</div>
{% endif %}
{% endblock global_actions %}
See Code Block in Script
{% extends '@EasyAdmin/default/list.html.twig' %}
// ... lines 2 - 8
{% block global_actions %}
// ... lines 10 - 11
{% if easyadmin_action_is_enabled_for_list_view('export', _entity_config.name) %}
<div class="button-action">
<a class="btn btn-primary" href="{{ path('easyadmin', _request_parameters|merge({ action: 'export' })) }}">
// ... lines 16 - 17
</a>
</div>
{% endif %}
{% endblock global_actions %}
See Code Block in Script
Dynamic Disable an Action AdminContext

... Then EasyAdmin would naturally just... hide the "Delete" link. To figure out how to do this, let's click into our base class - AbstractCrudController - and go down to where the controller methods are. Check this out: in ...

10:40
Adding a Custom Action

... does not start with /easyadmin. And so, it's not protected by our access_control security. That should be enough to get started. Refresh! There's our link! Click it and... good! Error! I love errors! Our action is still ...

10:32
... EasyAdmin. As you noticed, their JavaScript just isn't set up to work without full page refreshes. This is something that EasyAdmin will need to fix, and I would absolutely love to see it (and wouldn't mind helping with ...
weaverryan
weaverryan
Read Full Comment
... .maybe this correct ? (in webpack.config.js file) `.addEntry('easy-admin', './vendor/easycorp/easyadmin-bundle/assets/js/app.js')` after yarn --watch return this.... :'( ``` Module build failed: Module not ...
pasquale_pellicani
pasquale_pellicani
Read Full Comment