Jeandeson O. Merelis
Jeandeson O. Merelis
How about registering the PblNgridCellFactoryResolver directly in the AppModule? Would it solve? ```typescript @NgModule({ declarations: [ AppComponent ], imports: [ ... ], providers: [ PblNgridCellFactoryResolver ], //
Would you have a project that reproduces this error to share? As a workaround, maybe you could try passing the injector when creating the component, but I'm not sure it...
I was trying to resolve this issue without changing ngrid. One way to create the component is to make it a standalone component. ( https://stackblitz.com/edit/pebula-ngrid-starter-8cg3gh ) I hope someone suggests...
I found another solution based on this [thread](https://github.com/angular/angular/issues/35576) Here is the solution [Stackblitz](https://stackblitz.com/edit/pebula-ngrid-starter-hblhzd?file=src/app/app.component.ts)
I did a PoC a few weeks ago using Quarkus and jOOQ and was able to successfully build a native image with GraalVM. But I had to configure all generated...
Generated record classes use reflection in some way, so them need to be registered to use reflection. In Quarkus there are two ways to register a class for reflection. 1-...