python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
How to use Association field in Symfony EasyAdmin 4
When I use:
public function configureFields(string $pageName): iterable
{
return [
AssociationField::new('XYZ')
];
}`
I get error "Object of class App\Entity\XY...
Tim
Votes: 0
Answers: 1
How to use the AssociationField with a ManyToMany relationship in EasyAdmin 4?
I created an Artist Entity and an User Entity in Symfony 6. Both entities have a ManyToMany relationship, so a join table was created.
User Entity
#[ORM\OneToMany(mappedBy: 'author', targetEntity:...
LudoPilot
Votes: 0
Answers: 1
Easy Admin TextEditorField does not take html
I use a TextEditorField for Easy admin expecting that it could receive HTML and understand it to only show the text as outpout.
But it shows me <br> tags like this :
Michel Delatour<br>090...
user16697052
Votes: 0
Answers: 3
Symfony EasyAdmin3: Argument 1 passed must be an instance of App\Entity
I use easyadmin for Symfony (I am a beginner), I'm stuck on this problem:
Argument 1 passed to App\Entity\MyOrder::setCarrier() must be an instance of App\Entity\Carrier or null, int given, called in ...
user331157
Votes: 0
Answers: 1